blob: 9b4b10aa90636d00ce12940054a48c3b74c2c0a5 (
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
|
# Maintainer: Bao Trinh <qubidt@gmail.com>
# Contributor: moyiz <8603313+moyiz@users.noreply.github.com>
pkgname=wander
pkgver=1.1.0
pkgrel=1
pkgdesc="An efficient terminal application/TUI for your HashiCorp Nomad cluster."
arch=('i686' 'x86_64' 'aarch64')
url="https://github.com/robinovitch61/wander"
license=('MIT')
depends=('glibc')
makedepends=('git' 'go')
provides=('wander')
source=("${pkgname}::git+${url}.git#tag=v1.1.0")
sha256sums=('9d9b308e07f1d4ea9aa11ba22eaf0d489ff5d85e4f77993ac8457daf0a043f47')
prepare() {
cd "${pkgname}"
# create directory for build output
mkdir -p build
# download dependencies
go mod download
}
build() {
cd "${pkgname}"
export CGO_LDFLAGS="${LDFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export GOPATH="${srcdir}"
go build \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags="-linkmode=external -compressdwarf=false" \
-o build \
.
}
package() {
cd "${pkgname}"
install -Dm755 "build/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 -t "${pkgdir}/usr/share/doc/${pkgname}" README.md
}
|