blob: 8931f98565024f42db6cb1c42d182288ea2fe074 (
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
|
# Maintainer: Antonin Décimo <antonin dot decimo at gmail dot com>
pkgname=galene
pkgver=0.6.1
pkgrel=1
pkgdesc="A videoconferencing server"
arch=('x86_64' 'i686')
url='https://galene.org'
license=('MIT')
install='galene.install'
depends=('go')
makedepends=('git' 'pandoc')
source=("https://github.com/jech/$pkgname/archive/$pkgname-$pkgver.tar.gz"
'galene.service'
'galene.sysusers'
'galene.tmpfiles')
sha256sums=('ea7ac0d0c5cff685e1d2a2e077d7197588fb570adfab1a1a924c87271f682f29'
'b4027e852f6e3a19a1a8dcf6a28f86c5a93fdd00bd3641b3421b18af23b25cb0'
'a1b933ff4034cce2da2607e81df547acd7efa6f4236c18fec144047f50361f84'
'85680da8ab202280b92b6dd32e920906570fb8070db06b2ef0275462d0f5a16d')
prepare() {
cd "$srcdir/$pkgname-$pkgname-$pkgver"
mkdir -p _build
}
build() {
cd "$srcdir/$pkgname-$pkgname-$pkgver"
export CGO_ENABLED=0
go build \
-trimpath \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags "-s -w -linkmode external -extldflags \"${LDFLAGS}\"" \
-o _build \
./...
}
check() {
cd "$srcdir/$pkgname-$pkgname-$pkgver"
go test ./...
}
package() {
cd "$srcdir"
install -Dm644 galene.service "$pkgdir/usr/lib/systemd/system/galene.service"
install -Dm644 galene.sysusers "$pkgdir/usr/lib/sysusers.d/galene.conf"
install -Dm644 galene.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/galene.conf"
cd "$pkgname-$pkgname-$pkgver"
install -dm755 "${pkgdir}/usr/bin"
install -m755 "_build/galene" "_build/galene-password-generator" "${pkgdir}/usr/bin"
install -dm755 "$pkgdir/usr/share/galene"
cp -r static "$pkgdir/usr/share/galene"
local doc="$pkgdir/usr/share/doc/galene"
install -dm755 "$doc"
pandoc --from=markdown --to html --standalone --metadata title="Galène" README > "${doc}/README.html"
for file in README.FRONTEND README.PROTOCOL; do
pandoc --from=markdown --to html --standalone --shift-heading-level-by=-1 "$file" > "${doc}/${file}.html"
done
install -Dm644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENCE"
}
|