void-packages/srcpkgs/gogs/template
2015-10-09 08:19:39 +02:00

56 lines
1.7 KiB
Bash

# Template build file for 'gogs'
pkgname=gogs
version=0.6.15
revision=1
build_style=go
go_import_path="github.com/gogits/gogs"
short_desc="Self-hosted Git Service in Go"
maintainer="John Regan <john@jrjrtech.com>"
license="MIT"
homepage="http://gogs.io"
depends="git"
distfiles="https://github.com/gogits/gogs/archive/v${version}.tar.gz"
checksum=1843e8b72e8930f63f239d3a696d597aab61e355715791bd7bf889069170404f
hostmakedepends="git curl"
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 0755 gogs gogs
/srv/gogs/data/avatars 0755 gogs gogs
/srv/gogs/data/attachments 0755 gogs gogs
/var/log/gogs 0755 gogs gogs"
export CGO_ENABLED=1
post_extract() {
mkdir tmp
mkdir -p $GOPATH/src/github.com/gogits
ln -s $PWD $GOPATH/src/github.com/gogits/${pkgname}
sed -i 's@golang.org/x/net = commit:937a34c9de13@golang.org/x/net =@' .gopmfile
sed -i 's@golang.org/x/text = commit:5b2527008a4c@golang.org/x/text =@' .gopmfile
TMPDIR=${PWD}/tmp/ GOPMSTORE=${PWD}/tmp/gopm ${FILESDIR}/gopm-lite .gopmfile 1>/dev/null 2>/dev/null
TMPDIR=${PWD}/tmp/ go get -d -tags "sqlite redis memcache" "github.com/gogits/gogs"
}
do_build() {
TMPDIR=${PWD}/tmp/ GOOS=linux go build -tags "sqlite redis memcache"
rm -rf tmp
}
do_install() {
cd "$GOPATH/src/github.com/gogits/gogs"
vbin gogs-${version} 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
}