2012-12-28 08:14:34 +00:00
|
|
|
# Template build file for "git".
|
2008-10-04 04:29:49 +00:00
|
|
|
pkgname=git
|
2013-03-18 07:42:47 +00:00
|
|
|
version=1.8.2
|
2012-12-28 08:14:34 +00:00
|
|
|
revision=1
|
2013-02-21 20:11:32 +00:00
|
|
|
build_style=gnu-configure
|
|
|
|
configure_args="--with-curl --with-expat --without-tcltk"
|
|
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
2008-09-30 13:22:57 +00:00
|
|
|
short_desc="GIT Tree History Storage Tool"
|
2009-03-02 23:05:47 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-19 17:03:17 +00:00
|
|
|
homepage="http://git-scm.com/"
|
|
|
|
license="GPL-2"
|
2012-05-31 20:45:18 +00:00
|
|
|
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
|
2013-03-18 07:42:47 +00:00
|
|
|
checksum=c2f35bcefa4f62a54c4bde41cc0f1cd3ddf03e9a6bc8a79557f1683789f213e6
|
2008-10-20 14:34:27 +00:00
|
|
|
|
2012-11-26 23:42:38 +00:00
|
|
|
subpackages="git-docs git-perl git-python"
|
|
|
|
# Required by https://
|
|
|
|
depends="ca-certificates"
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl"
|
|
|
|
makedepends="openssl-devel libcurl-devel expat-devel python-devel"
|
2012-11-26 23:42:38 +00:00
|
|
|
|
2013-03-24 09:21:58 +00:00
|
|
|
if [ "$XBPS_CROSS_BUILD" ]; then
|
2013-02-21 20:11:32 +00:00
|
|
|
subpackages="git-perl"
|
|
|
|
configure_args="${configure_args} --without-python
|
|
|
|
ac_cv_fread_reads_directories=no
|
|
|
|
ac_cv_snprintf_returns_bogus=no"
|
2013-03-24 09:21:58 +00:00
|
|
|
hostmakedepends="perl"
|
|
|
|
makedepends="openssl-devel libcurl-devel expat-devel"
|
2013-02-21 20:11:32 +00:00
|
|
|
fi
|
2011-06-23 17:08:34 +00:00
|
|
|
|
2013-02-21 20:11:32 +00:00
|
|
|
post_build() {
|
2013-03-24 09:21:58 +00:00
|
|
|
if [ -z "$XBPS_CROSS_BUILD" ]; then
|
2013-02-21 20:11:32 +00:00
|
|
|
make ${makejobs} -C Documentation man
|
|
|
|
fi
|
2011-08-25 18:46:12 +00:00
|
|
|
}
|
|
|
|
|
2013-02-21 20:11:32 +00:00
|
|
|
post_install() {
|
2013-03-24 09:21:58 +00:00
|
|
|
if [ -z "$XBPS_CROSS_BUILD" ]; then
|
2013-02-21 20:11:32 +00:00
|
|
|
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} install-doc
|
|
|
|
fi
|
2012-10-18 20:10:12 +00:00
|
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
2012-12-28 08:14:34 +00:00
|
|
|
usr/share/bash-completion/completions git
|
2011-06-23 17:08:34 +00:00
|
|
|
}
|