blob: 790030e2da9b7f8f7bd5b3d761ef50a65143c51d (
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
|
_gitname=pihole-exporter
pkgname=prometheus-pihole-exporter
pkgver=0.4.0
pkgrel=1
pkgdesc="A Prometheus exporter for PI-Hole's Raspberry PI ad blocker."
arch=('any')
url="https://github.com/eko/pihole-exporter"
license=('unknown')
makedepends=('go')
source=("https://github.com/eko/pihole-exporter/archive/v$pkgver.tar.gz"
'prometheus-pihole-exporter.service'
)
sha256sums=('704923e5eadb6e8fb3d93d5d0180370c985f244d008b444544d80bbf5d93ebf5'
'80250d75f04a788c4194ca606dc95172df477c99b745e5a0e0b960f8a62657b5'
)
prepare(){
cd "$_gitname-$pkgver"
export GOPATH="${srcdir}/gopath"
go get -d .
}
build() {
cd "$_gitname-$pkgver"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOPATH="${srcdir}/gopath"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
go build -o $pkgname .
}
package() {
install -Dm644 $pkgname.service "$pkgdir"/usr/lib/systemd/system/$pkgname.service
cd "$_gitname-$pkgver"
install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
}
|