blob: 26e37e38f4a91398094eaa6abbacaa686cca557d (
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
|
pkgname=pm
_pkgname=pm
pkgver=20191014.21_37aa6fc
pkgrel=1
pkgdesc="Simple secure password manager written in Go"
arch=('x86_64')
license=('GPL')
depends=(
'sqlite'
'gnupg'
)
makedepends=(
'go'
'git'
)
source=(
"$_pkgname::git+https://github.com/himidori/pm"
)
md5sums=('SKIP')
pkgver() {
if [[ "$PKGVER" ]]; then
echo "$PKGVER"
return
fi
cd "$srcdir/$_pkgname"
local date=$(git log -1 --format="%cd" --date=short | sed s/-//g)
local count=$(git rev-list --count HEAD)
local commit=$(git rev-parse --short HEAD)
echo "$date.${count}_$commit"
}
build() {
cd "$srcdir/$_pkgname"
export GOPATH="$srcdir/go"
export GOBIN="$srcdir/go/bin"
echo ":: Updating git submodules"
git submodule update --init
echo ":: Building binary"
go get -v -t ./... # -v \
# -gcflags "-trimpath $GOPATH/src"
}
package() {
find "$srcdir/go/bin/" -type f -executable | while read filename; do
install -DT "$filename" "$pkgdir/usr/bin/$(basename $filename)"
done
}
|