blob: 27099ea5b467bde91b2d1e6c58b29121685a1572 (
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
|
# Maintainer: Vinay S Shastry <vinayshastry at gmail dot com>
pkgname=flarectl
_pkgname=cloudflare-go
pkgver=0.89.0
pkgrel=1
pkgdesc='CLI application for interacting with a Cloudflare account'
arch=('x86_64')
url="https://github.com/${_pkgname%-go}/${_pkgname}/tree/v${pkgver}/cmd/${pkgname}"
license=('BSD')
makedepends=('go')
options=('!lto')
source=("${pkgname}-${pkgver}.tar.gz"::"https://github.com/${_pkgname%-go}/${_pkgname}/archive/v${pkgver}.tar.gz")
b2sums=('a2f2795f967842aee975bc8534bac4ac61b9bbd3c858751479fda414854767465eeea23afe67200530b2e16ec65efbd52701a6d309d1a344502cfca7e0e0f541')
prepare() {
cd "${_pkgname}-${pkgver}"
mkdir --parents 'build'
}
build() {
cd "${_pkgname}-${pkgver}"
export \
CGO_CPPFLAGS="${CPPFLAGS}" \
CGO_CFLAGS="${CFLAGS}" \
CGO_CXXFLAGS="${CXXFLAGS}" \
CGO_LDFLAGS="${LDFLAGS}"
go build \
-buildmode=pie \
-ldflags "
-extldflags ${LDFLAGS}
-linkmode=external
-X main.version=$pkgver
" \
-mod=readonly \
-o build \
-trimpath \
./cmd/...
}
check() {
cd "${_pkgname}-${pkgver}"
go test \
-mod=readonly \
-v \
./cmd/...
}
package() {
install -D --mode 755 "${_pkgname}-${pkgver}/build/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
}
|