blob: eca291aee023b1efcf0de085206de25e9d2ccd1e (
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
69
70
71
|
# Maintainer: Celogeek <arch-aur-f5d67e@celogeek.com>
pkgname=jicofo-git
pkgver=1.0.996+0+gaafb61b5
pkgrel=1
pkgdesc="JItsi Meet COnference FOcus git build"
arch=('any')
url="https://jitsi.org/jitsi-meet/"
license=('Apache')
depends=("java-runtime-openjdk=11" "bash")
optdepends=("prosody")
makedepends=(
"git"
"java-environment-openjdk=11"
"unzip" "maven"
)
options=('!strip')
backup=(
"etc/${pkgname}/config"
"etc/${pkgname}/logging.properties"
"etc/${pkgname}/jicofo.conf"
)
source=(
"$pkgname::git+https://github.com/jitsi/jicofo"
"config"
"service"
"sysusers.conf"
"tmpfiles.conf"
)
install=install
pkgver() {
cd "$pkgname"
printf "1.0.%s" "$(git describe --exclude \*jitsi-meet\* --long | sed 's/-/+/g')"
}
build() {
cd "$pkgname"
export JAVA_HOME=/usr/lib/jvm/java-11-openjdk
export PATH=$JAVA_HOME/bin:$PATH
mvn -DskipTests -Dassembly.skipAssembly=true clean package install
mvn dependency:copy-dependencies -DincludeScope=runtime
}
package() {
cd "$srcdir/$pkgname"
DESTDIR="${pkgdir}/usr/lib/${pkgname}"
CONFDIR="${pkgdir}/etc/${pkgname}"
install -Dm644 -t "${DESTDIR}/lib" jicofo/target/dependency/*
install -Dm644 jicofo/target/jicofo*.jar "${DESTDIR}/jicofo.jar"
install -dm700 "${CONFDIR}"
install -Dm600 -t "${CONFDIR}" "lib/logging.properties"
install -Dm600 "jicofo-selector/src/main/resources/reference.conf" "${CONFDIR}/jicofo.conf"
install -Dm755 -t "${DESTDIR}" "resources/jicofo.sh"
sed -i 's@/var/log/jitsi@/var/log/'${pkgname}'@' "${CONFDIR}/logging.properties"
cd "$srcdir"
install -Dm600 -t "${CONFDIR}" "config"
install -Dm644 "service" "${pkgdir}/usr/lib/systemd/system/${pkgname}.service"
install -Dm644 "sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/$pkgname.conf"
install -Dm644 "tmpfiles.conf" "${pkgdir}/usr/lib/tmpfiles.d/$pkgname.conf"
}
sha256sums=('SKIP'
'657bb19d1e84ead55197afde304c3a84c304a01844279299a6c6267c9e0bdbee'
'89df67e9b062f0a9657e3c72d5c4432763702e20596603b599f178431027d62d'
'0681e97ca1e06d8ea7bdec0a874c6fc7a6ea84628923005130cd444547a1b440'
'b678d6312313b73dabc590f846cbd38de251ba4fd33ae0d523e4e8722f54c0ac')
|