# Template build file for 'gogs' pkgname=gogs version=0.11.43 revision=1 build_style=go go_import_path="github.com/gogits/gogs" short_desc="Self-hosted Git Service in Go" maintainer="John Regan " license="MIT" homepage="https://gogs.io" hostmakedepends="git curl" depends="git" distfiles="https://github.com/gogits/gogs/archive/v${version}.tar.gz" checksum=44ce25372fee4bf0cd3de54d7e7038ddc0079779c3ace7b4a0a53bb85853b14d conf_files="/etc/gogs.ini" system_accounts="gogs" gogs_homedir="/srv/gogs" gogs_shell="/bin/bash" export CGO_ENABLED=1 post_extract() { mkdir tmp mkdir -p $GOPATH/src/github.com/gogits ln -s $PWD $GOPATH/src/github.com/gogits/${pkgname} cd "$GOPATH/src/github.com/gogits/gogs" TMPDIR=${PWD}/tmp/ GOPATH=$GOPATH go get -d -tags "sqlite redis memcache" "github.com/gogits/gogs" } do_build() { cd "$GOPATH/src/github.com/gogits/gogs" TMPDIR=${PWD}/tmp/ GOOS=linux GOPATH=$GOPATH go build -tags "sqlite redis memcache" rm -rf tmp } do_install() { cd "$GOPATH/src/github.com/gogits/gogs" vbin gogs gogs 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 }