New package: galene-0.7.2.

This commit is contained in:
Michael Aldridge 2023-09-24 23:04:47 -05:00
parent 02c85a0f60
commit 1312218aa6
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,9 @@
#!/bin/sh
exec 2>&1
[ -r conf ] && . ./conf
if [ "$#" = 0 ] ; then
set -- -data /var/lib/galene -groups /etc/galene -static /usr/share/galene/static
fi
exec chpst -u _galene /usr/bin/galene "$@"

22
srcpkgs/galene/template Normal file
View file

@ -0,0 +1,22 @@
# Template file for 'galene'
pkgname=galene
version=0.7.2
revision=1
build_style=go
go_import_path=github.com/jech/galene
short_desc="Galene videoconference server"
maintainer="Michael Aldridge <maldridge@voidlinux.org>"
license="MIT"
homepage="https://galene.org"
distfiles="https://github.com/jech/galene/archive/refs/tags/galene-$version.tar.gz"
checksum=d238d862d84b5126762cc82aaeb249eb9c55e96f241050d5e7158a264ae4f0fb
system_accounts="_galene"
make_dirs="/etc/galene/ 0750 root _galene
/var/lib/galene 0750 _galene _galene"
post_install() {
vlicense LICENCE
vmkdir usr/share/galene/
vcopy static usr/share/galene/
vsv galene
}