void-packages/srcpkgs/gogs/template
2019-11-26 20:02:38 +01:00

41 lines
1.1 KiB
Bash

# Template file for 'gogs'
pkgname=gogs
version=0.11.91
revision=1
build_style=go
go_import_path=github.com/gogs/gogs
go_build_tags="sqlite pam cert"
hostmakedepends="git curl"
makedepends="pam-devel"
depends="git"
short_desc="Self-hosted Git Service in Go"
maintainer="John Regan <john@jrjrtech.com>"
license="MIT"
homepage="https://gogs.io"
distfiles="https://github.com/gogits/gogs/archive/v${version}.tar.gz"
checksum=6808db68a5952504b81f35fda29ddadde676a91d792262dcf7c3d90be85453eb
conf_files="/etc/gogs.ini"
system_accounts="gogs"
gogs_homedir="/srv/gogs"
gogs_shell="/bin/bash"
make_dirs="
/srv/gogs 0755 gogs gogs
/srv/gogs/repo 0755 gogs gogs
/srv/gogs/data/avatars 0755 gogs gogs
/srv/gogs/data/attachment 0755 gogs gogs
/var/log/gogs 0755 gogs gogs"
export CGO_ENABLED=1
post_install() {
install -d "$DESTDIR/usr/share/themes/gogs/default"
cp -r public "$DESTDIR/usr/share/themes/gogs/default/"
cp -r templates "$DESTDIR/usr/share/themes/gogs/default/"
vconf ${FILESDIR}/gogs.ini
vsconf ${FILESDIR}/gogs.ini
vlicense LICENSE
vdoc README.md
vsv gogs
}