summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJonas Witschel2019-08-29 02:36:09 +0200
committerJonas Witschel2019-08-29 02:36:09 +0200
commit3b571bd67d39d809bb7f8e2f1b36a0056a1b817d (patch)
treecae4f21e93af9f193d2710e0b4f6f7a6e56c5a68 /PKGBUILD
parent2f194f98d7b35b406fa2a708dfd6d5b847f2af1c (diff)
downloadaur-3b571bd67d39d809bb7f8e2f1b36a0056a1b817d.tar.gz
Specify localstatedir in ./configure
Tang stores its keys in localstatedir, so make sure it is set to the expected directory (/var instead of /usr/local/var).
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index b053218545f4..35e9c83c7bfa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jonas Witschel <diabonas at gmx dot de>
pkgname=tang
pkgver=7
-pkgrel=1
+pkgrel=2
pkgdesc='Server for binding data to network presence'
arch=('x86_64')
url='https://github.com/latchset/tang'
@@ -13,7 +13,7 @@ sha512sums=('dd4187fa6962523ac2a745ef05a27cdf7e5264c595942e63d406d67a1c595e87bd7
build() {
cd "$pkgname-$pkgver"
- ./configure --prefix=/usr --libexecdir=/usr/lib
+ ./configure --prefix=/usr --libexecdir=/usr/lib --localstatedir=/var
make
}