50 lines
1.4 KiB
Bash
50 lines
1.4 KiB
Bash
# Template build file for 'gogs'
|
|
pkgname=gogs
|
|
version=0.11.29
|
|
revision=2
|
|
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=3da2799e85d78ae36bc78725b4f19d409d45949831bb9aa306af43e851b89b13
|
|
hostmakedepends="git-perl curl"
|
|
|
|
conf_files="/etc/gogs.ini"
|
|
system_accounts="gogs"
|
|
gogs_homedir="/srv/gogs"
|
|
gogs_shell="/bin/bash"
|
|
|
|
export CGO_ENABLED=1
|
|
|
|
broken=https://build.voidlinux.eu/builders/i686_builder/builds/4423/steps/shell_3/logs/stdio
|
|
|
|
post_extract() {
|
|
mkdir tmp
|
|
mkdir -p $GOPATH/src/github.com/gogits
|
|
ln -s $PWD $GOPATH/src/github.com/gogits/${pkgname}
|
|
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
|
|
}
|