36 lines
1 KiB
Bash
36 lines
1 KiB
Bash
# Template build file for "cgit".
|
|
_git_version=2.8.3
|
|
|
|
pkgname=cgit
|
|
version=1.0
|
|
revision=1
|
|
hostmakedepends="asciidoc"
|
|
makedepends="libressl-devel zlib-devel"
|
|
short_desc="A fast webinterface for git"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
homepage="http://git.zx2c4.com/cgit/"
|
|
license="GPL-2"
|
|
distfiles="http://git.zx2c4.com/cgit/snapshot/cgit-${version}.tar.xz
|
|
https://www.kernel.org/pub/software/scm/git/git-${_git_version}.tar.xz"
|
|
checksum="a89754610922f122468c791888ed6309a81fa0f3ae948d118284b673cb40704d
|
|
7d8e6c274a88b4a73b3c98c70d3438ec12871300ce8bb4ca179ea19fcf74aa91"
|
|
|
|
post_extract() {
|
|
rm -r git
|
|
mv ../git-$_git_version git
|
|
}
|
|
|
|
pre_build() {
|
|
if ! grep -q "^GIT_VER = $_git_version\$" Makefile; then
|
|
msg_error "$pkgver: update _git_version to match upstream Makefile.\n"
|
|
fi
|
|
}
|
|
|
|
do_build() {
|
|
make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" prefix=/usr ${makejobs} all doc-man
|
|
}
|
|
|
|
do_install() {
|
|
make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" prefix=/usr DESTDIR=${DESTDIR} \
|
|
CGIT_SCRIPT_PATH=/usr/share/webapps/cgit install install-man
|
|
}
|