void-packages/srcpkgs/chroot-git/template
Đoàn Trần Công Danh 77ea0f30d9 chroot-git: cross-compile
2020-04-23 06:25:59 +07:00

39 lines
1 KiB
Bash

# Template file for 'chroot-git'
pkgname=chroot-git
version=2.26.2
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"
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=6d65132471df9e531807cb2746f8be317e22a343b9385bbe11c9ce7f0d2fc848
if [ "$CHROOT_READY" ]; then
hostmakedepends="perl tar"
else
configure_args+=" --with-zlib=${XBPS_MASTERDIR}/usr"
fi
post_configure() {
cat <<-EOF >config.mak
CC_LD_DYNPATH=-L
NO_INSTALL_HARDLINKS=Yes
NO_GETTEXT=Yes
EOF
}
do_install() {
# remove unneeded stuff.
make DESTDIR=${wrksrc}/build-tmp install
vbin ${wrksrc}/build-tmp/usr/bin/git chroot-git
}