diff options
author | Matthias Baur | 2018-03-05 22:53:27 +0100 |
---|---|---|
committer | Matthias Baur | 2018-03-05 22:53:27 +0100 |
commit | 1728b80a0dcaf4cca1c89431b66fa1d03481b646 (patch) | |
tree | e450740a059bd495824dcb743945cf719011720a | |
parent | 425e79b3861c7225080d2b4d50ff3a63c3102ef8 (diff) | |
download | aur-1728b80a0dcaf4cca1c89431b66fa1d03481b646.tar.gz |
Install into /usr
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 6 |
2 files changed, 6 insertions, 4 deletions
@@ -1,8 +1,8 @@ pkgbase = noson-app pkgdesc = The essential to control music from your SONOS devices on Linux platforms pkgver = 3.3.1 - pkgrel = 1 - url = https://janbar.github.io/noson-app/ + pkgrel = 2 + url = https://janbar.github.io/noson-app arch = x86_64 groups = base-devel license = GPL3 @@ -1,7 +1,7 @@ # Maintainer: Matthias Baur <aur@matthiasbaur.me> pkgname=noson-app pkgver=3.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="The essential to control music from your SONOS devices on Linux platforms" arch=('x86_64') url="https://janbar.github.io/noson-app" @@ -21,7 +21,9 @@ build() { mkdir -p "$srcdir/build" cd "$srcdir/build" cmake "$srcdir/${pkgname%-git}" \ - -DCMAKE_BUILD_TYPE=Release + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/lib make } |