37 lines
1,004 B
Text
37 lines
1,004 B
Text
# Template build file for "chroot-git".
|
|
pkgname=chroot-git
|
|
version=1.8.2
|
|
revision=1
|
|
wrksrc="git-$version"
|
|
build_style=gnu-configure
|
|
configure_args="--without-curl --without-openssl --without-python
|
|
--without-expat --without-tcltk"
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
|
short_desc="GIT Tree History Storage Tool -- for xbps-src use"
|
|
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
|
|
|
|
conflicts="git>=0"
|
|
provides="git-${version}"
|
|
bootstrap=yes
|
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
hostmakedepends="perl"
|
|
fi
|
|
|
|
if [ "$XBPS_CROSS_BUILD" ]; then
|
|
makedepends="zlib-devel"
|
|
configure_args="${configure_args}
|
|
ac_cv_fread_reads_directories=no
|
|
ac_cv_snprintf_returns_bogus=no"
|
|
fi
|
|
|
|
post_install() {
|
|
# remove unneeded stuff.
|
|
rm -rf ${DESTDIR}/usr/share/gitweb
|
|
rm -rf ${DESTDIR}/usr/share/man
|
|
rm -rf ${DESTDIR}/usr/share/perl5
|
|
}
|