diff options
author | Enes Hecan | 2021-03-29 16:21:27 +0200 |
---|---|---|
committer | Enes Hecan | 2021-03-29 16:21:27 +0200 |
commit | db1a4ee568fc9ab4b14cb39c967738ab6af804ff (patch) | |
tree | 9b43145bbf0493f93894bedd9a3e5e62dd132600 | |
parent | 95d263092b490932949a5283a5d6af6137e4678a (diff) | |
download | aur-db1a4ee568fc9ab4b14cb39c967738ab6af804ff.tar.gz |
Use /usr as install dir instead of /usr/local
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = whatsapp-for-linux pkgdesc = An unofficial WhatsApp desktop application for linux pkgver = 1.1.5 - pkgrel = 0 + pkgrel = 1 url = https://github.com/eneshecan/whatsapp-for-linux arch = i686 arch = x86_64 @@ -2,7 +2,7 @@ pkgname='whatsapp-for-linux' pkgver=1.1.5 -pkgrel=0 +pkgrel=1 pkgdesc="An unofficial WhatsApp desktop application for linux" url="https://github.com/eneshecan/whatsapp-for-linux" arch=('i686' 'x86_64' 'armv7h' 'aarch64') @@ -16,7 +16,7 @@ md5sums=('5c8d6f27c1825a1cdcb89a8557d0a041') build() { cd "$srcdir/$pkgname-$pkgver" - cmake -DCMAKE_BUILD_TYPE=Release . + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr . make } |