summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorTobias Rueetschi2017-12-05 08:46:50 +0100
committerTobias Rueetschi2017-12-05 08:46:50 +0100
commit3bd22dd0ea6a55d20e413c09bdba8e7519e2dd21 (patch)
tree6aaad8c1f701ead9dfea1a880cc260427fcb2564 /PKGBUILD
parent2e3174fc3d3f335a8f9f1e18f80bbf612d2f0958 (diff)
downloadaur-3bd22dd0ea6a55d20e413c09bdba8e7519e2dd21.tar.gz
fix installation directory
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 740da9a65e62..bdd571cea5c1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=vault-client
pkgver=1.1.3
-pkgrel=1
+pkgrel=2
pkgdesc="Vault-Client is a command-line interface to HashiCorp's Vault inspired by pass."
arch=(i686 x86_64)
url="https://github.com/adfinis-sygroup/vault-client.git"
@@ -23,5 +23,5 @@ build() {
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}/usr" install
+ make DESTDIR="${pkgdir}" prefix=/usr install
}