blob: 7175e1fab6f8c51e9f70d259ecd5e6cc220cc78f (
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
|
# Maintainer: Ben Goldberg <ben@benaaron.dev>
pkgname=gemcert-git
pkgver=r15.fc14deb
pkgrel=3
pkgdesc="A simple tool for creating self-signed certs for use in Geminispace."
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
makedepends=('go' 'git')
url="https://tildegit.org/solderpunk/gemcert"
license=('BSD')
provides=(gemcert)
conflicts=(gemcert)
source=("gemcert::git+https://tildegit.org/solderpunk/gemcert.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/gemcert"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "$srcdir/gemcert"
mkdir -p build/
if [ ! -f go.mod ]; then
go mod init "${url#https://}" # strip https:// from canonical URL
go mod tidy
fi
}
build() {
cd "$srcdir/gemcert"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
go build -o build/gemcert \
-trimpath \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
main.go
}
check() {
cd "$srcdir/gemcert"
go test ./...
}
package() {
cd "$srcdir/gemcert"
install -Dm755 build/gemcert "$pkgdir"/usr/bin/gemcert
}
|