summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 22b9b01ec3f1..caf71ac98bf0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = vault-client
pkgdesc = Vault-Client is a command-line interface to HashiCorp's Vault inspired by pass.
pkgver = 1.1.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/adfinis-sygroup/vault-client.git
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 1e648c206b7c..e274ef21fab9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=vault-client
pkgver=1.1.1
-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,6 @@ build() {
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ install -Dm755 vc "${pkgdir}/usr/bin/vc"
+ install -Dm644 sample/vc-completion.bash "${pkgdir}/usr/share/bash-completion/completions/vc"
}