34 lines
905 B
Bash
34 lines
905 B
Bash
# Template build file for 'gogs'
|
|
pkgname=gogs
|
|
version=0.11.66
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/gogs/gogs"
|
|
go_build_tags="sqlite pam cert"
|
|
short_desc="Self-hosted Git Service in Go"
|
|
maintainer="John Regan <john@jrjrtech.com>"
|
|
license="MIT"
|
|
homepage="https://gogs.io"
|
|
hostmakedepends="git curl"
|
|
makedepends="pam-devel"
|
|
depends="git"
|
|
distfiles="https://github.com/gogits/gogs/archive/v${version}.tar.gz"
|
|
checksum=492233d48045f607a5822d2c3644ac174ce2e43741f770896f400051c398274e
|
|
|
|
conf_files="/etc/gogs.ini"
|
|
system_accounts="gogs"
|
|
gogs_homedir="/srv/gogs"
|
|
gogs_shell="/bin/bash"
|
|
|
|
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
|
|
}
|