blob: b8c7bcc556e7eb2c992c7de880c102f74b17b4bc (
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.33.4
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) # 'bzr', 'git', 'mercurial' or 'subversion'
options=()
source=("git+https://github.com/tidwall/tile38#tag=$pkgver")
sha256sums=('83ce1567904a88501effe05ab158736e2202b4fa9dbff358e9c342fbd81e9373')
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=$(git describe --tags --abbrev=0) \
-X github.com/tidwall/tile38/core.GitSHA=$(git rev-parse --short HEAD) \
-X github.com/tidwall/tile38/core.BuildTime=$(date -u +'%Y-%m-%dT%H:%M:%SZ' --date=@${SOURCE_DATE_EPOCH})
"
go build \
-ldflags "${_ldflags}" \
-o build \
./...
}
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"
}
|