summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrunorro2020-11-21 10:57:29 +0100
committerbrunorro2020-11-21 11:11:38 +0100
commitac8ac1bebb8febf3f696dd9e589485e851180cfd (patch)
treeecadca745af6223d994ee7aab9d9b57199e83cd1
parent871df555f30fb19acdc9093a6f74ee5467fe924a (diff)
downloadaur-ac8ac1bebb8febf3f696dd9e589485e851180cfd.tar.gz
Install to /usr/; Add git as dep; Update version
* Now the package is installed to /usr instead of /usr/local * Added git to the dependencies * Using version 18864b6d
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 68718ce87b17..40e36bffa16d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = wterm-git
pkgdesc = xterm for wayland (simple wayland st suckless terminal)
- pkgver = 0ae42717
+ pkgver = 18864b6d
pkgrel = 1
url = https://github.com/majestrate/wterm
arch = x86_64
@@ -10,6 +10,7 @@ pkgbase = wterm-git
depends = wayland
depends = libxkbcommon
depends = pixman
+ depends = git
optdepends = ttf-liberation: Red Hats liberation fonts
provides = wterm
conflicts = wterm
diff --git a/PKGBUILD b/PKGBUILD
index 45282b4dc090..438d90ae7a55 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: brunorro <br1.rdgz@gmail.com>
_pkgname=wterm
pkgname=$_pkgname-git
-pkgver=0ae42717
+pkgver=18864b6d
pkgrel=1
epoch=
pkgdesc="xterm for wayland (simple wayland st suckless terminal)"
@@ -9,7 +9,7 @@ arch=('x86_64')
url="https://github.com/majestrate/wterm"
license=('MIT')
groups=()
-depends=('libdrm' 'fontconfig' 'wayland' 'libxkbcommon' 'pixman')
+depends=('libdrm' 'fontconfig' 'wayland' 'libxkbcommon' 'pixman' 'git')
makedepends=()
checkdepends=()
optdepends=('ttf-liberation: Red Hats liberation fonts')
@@ -43,7 +43,7 @@ build() {
package() {
cd "$_pkgname"
- make BIN_PREFIX="$pkgdir/usr/local" SHARE_PREFIX="$pkgdir/usr/local" install
+ make BIN_PREFIX="$pkgdir/usr/" SHARE_PREFIX="$pkgdir/usr/" install
mkdir -p "$pkgdir/usr/share/terminfo/w/"
cp wterm.info "$pkgdir/usr/share/terminfo/w/"
}