blob: 2a821f82ab5f24bb28df22c4969631953fc066be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer: Tom Whitwell <tom@whi.tw>
pkgname=aws-vault-git
pkgver=6.0.0.beta4.r10.g411919b
pkgrel=1
pkgdesc="A vault for securely storing and accessing AWS credentials in development environments"
arch=('i686' 'x86_64')
url="https://github.com/99designs/aws-vault"
license=('MIT')
makedepends=('git' 'go')
optdepends=('zenity: graphical prompt'
'kdialog: graphical prompt')
provides=("aws-vault=${pkgver}")
conflicts=('aws-vault')
source=("${pkgname}"::"git+https://github.com/99designs/aws-vault")
sha512sums=('SKIP')
pkgver() {
pushd "${srcdir}/${pkgname}" >/dev/null
{
git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | sed 's/^v\(.*\)/\1/'
}
popd >/dev/null
}
build() {
msg2 'building aws-vault'
pushd "${srcdir}/${pkgname}" >/dev/null
{
CGO_ENABLED=0 go build \
-trimpath \
-ldflags "-extldflags $LDFLAGS" \
-ldflags="-X main.Version=v$pkgver" \
-o $pkgname .
}
popd >/dev/null
}
check() {
msg2 'aws-vault binary'
pushd ${srcdir}/${pkgname} >/dev/null
{
./aws-vault-git --version
}
popd >/dev/null
}
package() {
msg2 'aws-vault binary'
pushd "${srcdir}/${pkgname}" >/dev/null
{
install -Dm755 "aws-vault-git" "${pkgdir}/usr/bin/aws-vault"
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/aws-vault-git/LICENSE"
}
popd >/dev/null
msg2 'completion files'
pushd "${srcdir}/${pkgname}" >/dev/null
{
install -Dm644 "contrib/completions/bash/aws-vault.bash" "${pkgdir}/usr/share/bash-completion/completions/aws-vault"
install -Dm644 "contrib/completions/zsh/aws-vault.zsh" "${pkgdir}/usr/share/zsh/site-functions/_aws-vault"
}
popd >/dev/null
}
|