mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 19:01:25 +02:00
75 lines
2.5 KiB
Plaintext
75 lines
2.5 KiB
Plaintext
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
|
# Maintainer: 7heo <7heo@mail.com>
|
|
pkgname=gogs
|
|
pkgver=0.11.34
|
|
pkgrel=0
|
|
pkgdesc="A self-hosted Git service written in Go"
|
|
url="https://gogs.io/"
|
|
arch="all"
|
|
license="MIT"
|
|
depends="git"
|
|
makedepends="go-tools perl libcap"
|
|
install="$pkgname.pre-install"
|
|
pkgusers="gogs"
|
|
pkggroups="www-data"
|
|
options="!strip"
|
|
source="${pkgname}-${pkgver}.tar.gz::https://github.com/gogits/$pkgname/archive/v$pkgver.tar.gz
|
|
$pkgname.initd
|
|
$pkgname.confd
|
|
$pkgname.ini"
|
|
builddir="$srcdir/github.com/gogits/$pkgname"
|
|
|
|
prepare() {
|
|
mkdir -p "$srcdir"/github.com/gogits
|
|
mv "$srcdir"/$pkgname-$pkgver "$builddir"/ || return 1
|
|
|
|
default_prepare
|
|
}
|
|
|
|
build() {
|
|
export GOPATH="$startdir"
|
|
cd "$builddir" || return 1
|
|
go fix || return 1
|
|
# Note: sqlite causes problems without the pie buildmode
|
|
go build -buildmode=pie -v -tags "sqlite redis memcache cert" ||return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
install -d -m 0755 \
|
|
"$pkgdir"/usr/share/webapps/$pkgname || return 1
|
|
|
|
# TODO: Is it really necessary to be world-readable?!
|
|
install -d -m 0755 -o gogs -g www-data \
|
|
"$pkgdir"/var/lib/$pkgname \
|
|
"$pkgdir"/var/lib/$pkgname/git \
|
|
"$pkgdir"/var/lib/$pkgname/db \
|
|
"$pkgdir"/var/lib/$pkgname/avatars \
|
|
"$pkgdir"/var/lib/$pkgname/attachements \
|
|
"$pkgdir"/var/cache/$pkgname/sessions \
|
|
"$pkgdir"/var/log/$pkgname \
|
|
"$pkgdir"/etc/$pkgname/conf || return 1
|
|
|
|
install -D -m 0755 $pkgname \
|
|
"$pkgdir"/usr/bin/$pkgname || return 1
|
|
# Allow to bind to port 80.
|
|
setcap cap_net_bind_service=+ep \
|
|
"$pkgdir"/usr/bin/$pkgname || return 1
|
|
|
|
install -D -m 0664 -o gogs -g www-data "$srcdir"/${pkgname}.ini \
|
|
"$pkgdir"/etc/$pkgname/conf/app.ini || return 1
|
|
|
|
mv public templates "$pkgdir"/usr/share/webapps/$pkgname/ || return 1
|
|
|
|
install -D -m755 "$srcdir"/$pkgname.initd \
|
|
"$pkgdir"/etc/init.d/$pkgname || return 1
|
|
install -D -m644 "$srcdir"/$pkgname.confd \
|
|
"$pkgdir"/etc/conf.d/$pkgname || return 1
|
|
}
|
|
|
|
sha512sums="0de420bf2d27ab86f5efd6cb5c4a43d1f8cb0f98abe3791177c14ef9e38437571ba4491c62cf7e9f6366469294197c57cd149a6c633cc08640c612b5ee506838 gogs-0.11.34.tar.gz
|
|
be5a9ef2cae1ee2e8106feb6a997ae06519af91fe57f746d20996e79c332c93bb43fc53f79ff4e8ce13222afc6f3dc7bc5cbb758ef201b03e49d809c87c8c4c7 gogs.initd
|
|
52ce41c05c263b790221a04d13d2eb9bba689e4bd72daf5b6af31416e80a485a46bae19e18581d7bde879307283847e6486686a2fe4140fe38ebb6f315e11a86 gogs.confd
|
|
4c2b398cf93ebb8b743b9e7ec1b075706427081036effb53fa90729e70fbc3eb92f2f853278b887ca79dc35cd55a64e1bff4d18e1ad246beab2a723aa9cd71ba gogs.ini"
|