blob: 0f8bf9ad028e03fbfa78ca837510d71a65948a68 (
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
64
65
66
67
68
69
|
# Maintainer: AdmiringWorm <kim.nordmo@gmail.com>
# Contributor: nirnakinho <aur at dominikbodi dot de>
pkgname=dnscontrol
pkgver=4.38.0
pkgrel=1
pkgdesc="Synchronize your DNS to multiple providers from a simple DSL"
arch=('x86_64' 'armv7h' 'aarch64')
url="https://dnscontrol.org/"
license=('MIT')
depends=('glibc')
makedepends=('git' 'go')
provides=("${pkgname}=${pkgver}")
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/DNSControl/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
b2sums=('9e7da5e86092cde49f094a1113fe3940eadc0175f27df7921544df6156f81f84657815a0a05215c58a294a08c8334205ed2682e7a5a46f44e3e8e29af891161d')
prepare(){
cd "${pkgname}-${pkgver}"
mkdir -p build/
}
build() {
local _x _commit
_commit=$(bsdcat "${pkgname}-${pkgver}.tar.gz" | git get-tar-commit-id)
_x=(
version="${pkgver}"
commit="${_commit:?}"
)
export CGO_ENABLED=1
export CGO_LDFLAGS="${LDFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export GOFLAGS="${GOFLAGS} -buildmode=pie -trimpath -modcacherw -mod=readonly"
export GO111MODULE=on
# Support -debug package
if [[ " ${OPTIONS[*]} " =~ " debug " ]]
then
export GOFLAGS="${GOFLAGS//-trimpath/}"
export GOPATH="${srcdir}"
fi
set | grep GO_
cd "${pkgname}-${pkgver}"
go build -v \
-ldflags="${_x[*]/#/-X=github.com/DNSControl/dnscontrol/v4/pkg/version.} -linkmode=external" \
-o build/ \
.
}
check() {
cd "${pkgname}-${pkgver}"
go test -short ./...
}
package() {
cd "${pkgname}-${pkgver}"
install -Dm755 build/${pkgname} "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
"build/${pkgname}" shell-completion bash \
| install -Dpm0644 /dev/stdin "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
"build/${pkgname}" shell-completion zsh \
| install -Dpm0644 /dev/stdin "${pkgdir}/usr/share/zsh/site-functions/_${pkgname}"
}
|