void-packages/srcpkgs/gotify-server/template

43 lines
1.1 KiB
Bash

# Template file for 'gotify-server'
pkgname=gotify-server
version=2.4.0
revision=1
build_style=go
go_import_path="github.com/gotify/server/v2"
go_ldflags="-extldflags=-fuse-ld=bfd -X main.Version=${version}
-X main.BuildDate=${SOURCE_DATE_EPOCH} -X main.Mode=prod"
hostmakedepends="yarn packr2"
short_desc="Simple server for sending and receiving messages"
maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT"
homepage="https://gotify.net"
distfiles="https://github.com/gotify/server/archive/v${version}.tar.gz"
checksum=ef217ca84232334ed03dcf30ccb67315a07508e6f5a58a923c01ea197e198226
conf_files="/etc/gotify/config.yml"
system_accounts="_gotify"
_gotify_homedir="/var/lib/gotify"
make_dirs="/var/lib/gotify 0750 _gotify _gotify"
post_patch() {
vsed 's,data/,/var/lib/gotify/,' -i config.example.yml
}
pre_build() {
export NODE_OPTIONS=--openssl-legacy-provider
cd ui
yarn
yarn build
cd "$wrksrc"
packr2
}
post_install() {
mv ${DESTDIR}/usr/bin/server ${DESTDIR}/usr/bin/gotify-server
vlicense LICENSE
vinstall config.example.yml 644 etc/gotify config.yml
vsv gotify-server
}