void-packages/srcpkgs/cgit/template

37 lines
1.0 KiB
Bash
Raw Normal View History

2014-08-18 15:14:52 +02:00
# Template build file for "cgit".
2016-06-10 13:35:58 +02:00
_git_version=2.8.3
2014-08-18 15:14:52 +02:00
pkgname=cgit
2016-06-10 13:35:58 +02:00
version=1.0
revision=1
2014-08-18 15:14:52 +02:00
hostmakedepends="asciidoc"
makedepends="libressl-devel zlib-devel"
2014-08-18 15:14:52 +02:00
short_desc="A fast webinterface for git"
maintainer="Eivind Uggedal <eivind@uggedal.com>"
homepage="http://git.zx2c4.com/cgit/"
license="GPL-2"
2015-02-16 11:12:35 +01:00
distfiles="http://git.zx2c4.com/cgit/snapshot/cgit-${version}.tar.xz
https://www.kernel.org/pub/software/scm/git/git-${_git_version}.tar.xz"
2016-06-10 13:35:58 +02:00
checksum="a89754610922f122468c791888ed6309a81fa0f3ae948d118284b673cb40704d
7d8e6c274a88b4a73b3c98c70d3438ec12871300ce8bb4ca179ea19fcf74aa91"
2014-08-18 15:14:52 +02:00
post_extract() {
rm -r git
mv ../git-$_git_version git
}
2015-02-16 11:12:35 +01:00
2014-08-18 15:14:52 +02:00
pre_build() {
if ! grep -q "^GIT_VER = $_git_version\$" Makefile; then
msg_error "$pkgver: update _git_version to match upstream Makefile.\n"
fi
}
2015-02-16 11:12:35 +01:00
do_build() {
2016-05-24 11:34:20 +02:00
make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" prefix=/usr ${makejobs} all doc-man
}
2015-02-16 11:12:35 +01:00
do_install() {
2016-05-24 11:34:20 +02:00
make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" prefix=/usr DESTDIR=${DESTDIR} \
CGIT_SCRIPT_PATH=/usr/share/webapps/cgit install install-man
}