mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 18:45:05 +02:00
40 lines
907 B
Text
40 lines
907 B
Text
# Contributor: omni <omni+alpine@hack.org>
|
|
# Maintainer: omni <omni+alpine@hack.org>
|
|
pkgname=got
|
|
_pkgname=got-portable
|
|
pkgver=0.112
|
|
pkgrel=0
|
|
pkgdesc="A VCS which prioritizes ease of use and simplicity over flexibility"
|
|
url="https://gameoftrees.org/"
|
|
arch="all"
|
|
license="ISC"
|
|
makedepends="
|
|
libbsd-dev
|
|
libevent-dev
|
|
libretls-dev
|
|
ncurses-dev
|
|
util-linux-dev
|
|
zlib-dev
|
|
"
|
|
options="!check"
|
|
subpackages="$pkgname-doc"
|
|
source="https://gameoftrees.org/releases/portable/got-portable-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
./configure --prefix=/usr --exec_prefix=/usr --mandir=/usr/share/man \
|
|
--sysconfdir=/etc --localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make tests
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
bbc091715d701ae0cfd1095e9a3769dcb09fa2873d79d8aa34167853c62e050e044436af0307ce90d24ba9176c9dacbe6965a3f511294075a094e7b8506cb9e9 got-portable-0.112.tar.gz
|
|
"
|