blob: b64ddab8cbca6591dc208739714e2df912bb3416 (
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: jmattheis <contact AT jmattheis DOT de>
# Contributor: ml <ml@visu.li>
pkgname=gotify-server
pkgver=2.0.14
_commit=e56f7bc4c7efdb61fea88a0b65d501277604cefa
pkgrel=4
pkgdesc='A simple server for sending and receiving messages in real-time per WebSocket.'
arch=('x86_64' 'i686' 'aarch64' 'armv7')
url='https://gotify.net/'
license=('MIT')
depends=('glibc')
makedepends=('git' 'go' 'yarn')
backup=('etc/gotify/config.yml')
install="${pkgname}.install"
options=(emptydirs)
source=(
"$pkgname-$pkgver.tar.gz::https://github.com/gotify/server/archive/v${pkgver}.tar.gz"
'sysusers.d'
'gotify-server.service'
'config.patch'
)
sha256sums=('986125b92192e404a2f3af5db510d2d651c6301d218cbb66edd6013f8e8153b0'
'39fc913f205bbb102ba42ce3d419f2feb0f9143f14ccffd242b3cd5f51a8c0de'
'9aa04ff9a2981aa885d4f8df7467c4d7722aa12de7ae27376a4a11b559a0d1e2'
'8009ba82fa98bfeeb8c51732d8506afdef4ccfdcd4071be5fcf64af06ae2b1f4')
prepare() {
patch -N -p1 -d "server-$pkgver" <config.patch
}
build() {
cd "server-$pkgver"
(
cd ui
yarn --non-interactive --frozen-lockfile
NODE_ENV=production yarn --non-interactive --frozen-lockfile build
)
go run github.com/gobuffalo/packr/packr
local build_date=$(date "+%F-%T" -d "@${SOURCE_DATE_EPOCH}")
go build \
-o "$pkgname" \
-trimpath \
-buildmode=pie \
-ldflags "-X 'main.Version=${pkgver}' \
-X 'main.Commit=${_commit}' \
-X 'main.BuildDate=${build_date}' \
-X 'main.Mode=prod' \
-extldflags=${LDFLAGS}"
}
check() {
cd "server-$pkgver"
# https://github.com/gotify/server/pull/279
rm -vf config/config_test.go
go test -v ./...
}
package() {
install -Dm644 sysusers.d "$pkgdir/usr/lib/sysusers.d/gotify.conf"
install -Dm644 gotify-server.service "$pkgdir/usr/lib/systemd/system/gotify-server.service"
# required for StandardOutput in gotify-server.service
install -dm755 "$pkgdir/var/log/gotify"
cd "server-$pkgver"
install -Dm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
install -Dm644 config.example.yml "$pkgdir/etc/gotify/config.yml"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|