48 lines
1.3 KiB
Bash
48 lines
1.3 KiB
Bash
# Template file for 'chroot-git'
|
|
pkgname=chroot-git
|
|
version=2.24.0
|
|
revision=1
|
|
bootstrap=yes
|
|
wrksrc="git-${version}"
|
|
build_style=gnu-configure
|
|
configure_args="--without-curl --without-openssl
|
|
--without-python --without-expat --without-tcltk
|
|
ac_cv_lib_curl_curl_global_init=no ac_cv_lib_expat_XML_ParserCreate=no
|
|
ac_cv_snprintf_returns_bogus=no"
|
|
makedepends="zlib-devel"
|
|
short_desc="GIT Tree History Storage Tool -- for xbps-src use"
|
|
maintainer="Enno Boland <gottox@voidlinux.org>"
|
|
license="GPL-2.0-only"
|
|
homepage="https://git-scm.com/"
|
|
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
|
checksum=9f71d61973626d8b28c4cdf8e2484b4bf13870ed643fed982d68b2cfd754371b
|
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
hostmakedepends="perl"
|
|
else
|
|
configure_args+=" --with-zlib=${XBPS_MASTERDIR}/usr"
|
|
fi
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
configure_args+=" ac_cv_fread_reads_directories=yes"
|
|
;;
|
|
*) configure_args+=" ac_cv_fread_reads_directories=no" ;;
|
|
esac
|
|
|
|
post_configure() {
|
|
cat <<-EOF >config.mak
|
|
CC_LD_DYNPATH=-L
|
|
NO_INSTALL_HARDLINKS=Yes
|
|
EOF
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) echo "ICONV_OMITS_BOM=Yes" >>config.mak ;;
|
|
esac
|
|
}
|
|
|
|
do_install() {
|
|
# remove unneeded stuff.
|
|
make DESTDIR=${wrksrc}/build-tmp install
|
|
|
|
vbin ${wrksrc}/build-tmp/usr/bin/git chroot-git
|
|
}
|