blob: ecf2bb1378748ebed2965e9787674f5772b0fdfd (
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
|
pkgname=zendrite
pkgver=3.1.0
pkgrel=1
pkgdesc="An opinionated fork of element-hq/dendrite"
arch=(x86_64)
url=https://zendrite.pat-s.me/
license=("GPL-3.0-or-later OR LicenseRef-Element-Commercial-License")
depends=(glibc)
makedepends=(git go)
optdepends=("postgresql>=12: Recommended database"
"nats-server: Use external nats server")
install="$pkgname.install"
source=("git+https://codefloe.com/pat-s/zendrite.git#tag=v$pkgver"
"$pkgname.service")
sha256sums=('f53cd6e5eefd62e872bb34b641442500907b07c755e1fe8d9bd70c496e7f1f38'
'8eb2c645705cd432b6d16cda65f31f06fa97f513b9d3d90e4c6e5a87bfb39513')
prepare() {
cd "$pkgname"
export GOPATH="$srcdir"
go mod download -modcacherw
}
build() {
cd "$pkgname"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -mod=readonly -modcacherw"
export GOPATH="$srcdir"
go build -ldflags "-compressdwarf=false -linkmode external -bindnow -X codefloe.com/pat-s/zendrite/internal.version=$pkgver" \
-tags goolm -o bin/ ./cmd/...
}
package() {
cd "$pkgname"
find bin -mindepth 1 -maxdepth 1 -type f -executable \
-exec install -Dvm755 -t "$pkgdir/usr/bin/" {} +
for f in "$pkgdir/usr/bin/"*
do
basename="$(basename "$f")"
if [[ "$basename" != "$pkgname"* ]]
then
mv -v "$f" "$pkgdir/usr/bin/$pkgname-$basename"
fi
done
install -Dvm644 LICENSE-COMMERCIAL "$pkgdir/usr/share/licenses/$pkgname/LICENSE-COMMERCIAL"
install -Dvm644 "../$pkgname.service" "$pkgdir/usr/lib/systemd/system/$pkgname.service"
install -Dvm644 -t "$pkgdir/usr/share/doc/$pkgname/" "$pkgname-sample.yaml"
}
|