48 lines
1.2 KiB
Text
48 lines
1.2 KiB
Text
# Template build file for "git".
|
|
pkgname=git
|
|
version=1.9.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-curl --with-expat --without-tcltk
|
|
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
|
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl python"
|
|
makedepends="openssl-devel libcurl-devel expat-devel ca-certificates"
|
|
# Required by https://
|
|
depends="ca-certificates"
|
|
short_desc="GIT Tree History Storage Tool"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://git-scm.com/"
|
|
license="GPL-2"
|
|
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
|
checksum=f962fbce8c049f94ece1d1845cba1528c13ff82de7cc8d23cddb3d0c93c3a77b
|
|
|
|
post_build() {
|
|
make ${makejobs} -C Documentation man
|
|
}
|
|
|
|
post_install() {
|
|
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} install-doc
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
usr/share/bash-completion/completions git
|
|
}
|
|
|
|
git-docs_package() {
|
|
noarch=yes
|
|
short_desc+=" - documentation"
|
|
pkg_install() {
|
|
for f in man1 man5 man7; do
|
|
vmove usr/share/man/${f}
|
|
done
|
|
}
|
|
}
|
|
|
|
git-perl_package() {
|
|
noarch=yes
|
|
depends="git perl"
|
|
short_desc+=" - perl bindings"
|
|
pkg_install() {
|
|
vmove usr/share/perl5
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|