blob: 76d2b5b436cd03ea9c863a00bed92493422e8517 (
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
|
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
pkgname=tile38
pkgver=1.34.0
pkgrel=1
pkgdesc='An in-memory geolocation data store, spatial index, and realtime geofencing server'
arch=(x86_64 armv7h aarch64)
url='https://tile38.com'
license=('MIT')
depends=(ca-certificates)
makedepends=(git go)
source=("git+https://github.com/tidwall/tile38#tag=${pkgver}")
sha256sums=('eddcf31adc91f23aefb4ffc43be0eaacf4207f9f03dc0db2f83397cac1738a13')
prepare() {
cd "${pkgname}"
mkdir -p build
export GOPATH="${srcdir}"
export GOFLAGS="-modcacherw"
go mod download
}
build() {
cd "${pkgname}"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export CGO_ENABLED=0
export GOPATH="${srcdir}"
export GOFLAGS="\
-buildmode=pie \
-mod=readonly \
-modcacherw \
-trimpath \
"
local _ld_flags=" \
-compressdwarf=false \
-linkmode=external \
-X github.com/tidwall/tile38/core.Version=${pkgver} \
-X github.com/tidwall/tile38/core.GitSHA=${sha256sums[0]:0:7} \
-X github.com/tidwall/tile38/core.BuildTime=$(date -u +'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH}) \
"
core/gen.sh
go build \
-ldflags "${_ldflags}" \
-o build \
./cmd/...
}
check() {
cd "${pkgname}"
go test ./...
}
package() {
cd "${pkgname}"
install -Dm755 build/tile38-cli "${pkgdir}/usr/bin/tile38-cli"
install -Dm755 build/tile38-server "${pkgdir}/usr/bin/tile38-server"
install -Dm755 build/tile38-benchmark "${pkgdir}/usr/bin/tile38-benchmark"
install -Dm755 build/tile38-luamemtest "${pkgdir}/usr/bin/tile38-luamemtest"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|