41 lines
1.1 KiB
Bash
41 lines
1.1 KiB
Bash
# Template file for 'gogs'
|
|
pkgname=gogs
|
|
version=0.11.86
|
|
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=1745610d42a2ec6dd7d6e306ae7a1b120e5fbcb646c06738b332cc99f170b152
|
|
|
|
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
|
|
}
|