42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
# Template build file for "git".
|
|
pkgname=git
|
|
version=1.8.2
|
|
revision=1
|
|
build_style=gnu-configure
|
|
configure_args="--with-curl --with-expat --without-tcltk"
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
|
short_desc="GIT Tree History Storage Tool"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://git-scm.com/"
|
|
license="GPL-2"
|
|
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
|
|
checksum=c2f35bcefa4f62a54c4bde41cc0f1cd3ddf03e9a6bc8a79557f1683789f213e6
|
|
|
|
subpackages="git-docs git-perl git-python"
|
|
# Required by https://
|
|
depends="ca-certificates"
|
|
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl"
|
|
makedepends="openssl-devel libcurl-devel expat-devel python-devel"
|
|
|
|
if [ "$XBPS_CROSS_BUILD" ]; then
|
|
subpackages="git-perl"
|
|
configure_args="${configure_args} --without-python
|
|
ac_cv_fread_reads_directories=no
|
|
ac_cv_snprintf_returns_bogus=no"
|
|
hostmakedepends="perl"
|
|
makedepends="openssl-devel libcurl-devel expat-devel"
|
|
fi
|
|
|
|
post_build() {
|
|
if [ -z "$XBPS_CROSS_BUILD" ]; then
|
|
make ${makejobs} -C Documentation man
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
if [ -z "$XBPS_CROSS_BUILD" ]; then
|
|
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} install-doc
|
|
fi
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
usr/share/bash-completion/completions git
|
|
}
|