blob: 7411521658188f3bb472cf3d7e6e678276f805d3 (
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
|
# Maintainer: Adam Goldsmith <contact@adamgoldsmith.name>
pkgname=rtlamr-collect-git
_pkgname=${pkgname%%-git}
pkgver=1.0.3.r0.g7951486
pkgrel=1
pkgdesc="Data aggregation for rtlamr."
arch=('any')
url="https://github.com/bemasher/rtlamr-collect"
license=('AGPL3')
depends=('rtl-sdr')
makedepends=('go' 'git')
provides=('rtlamr-collect')
conflicts=('rtlamr-collect')
source=("git+https://github.com/bemasher/rtlamr-collect.git")
md5sums=('SKIP')
pkgver() {
cd "$_pkgname"
git describe --long --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare(){
cd "$_pkgname"
mkdir -p build
}
build() {
cd "$_pkgname"
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 .
}
check() {
cd "$_pkgname"
go test ./...
}
package() {
cd "$_pkgname"
install -p -Dm755 build/$_pkgname "$pkgdir"/usr/bin/$_pkgname
}
# vim:set ts=2 sw=2 et:
|