81 lines
1.7 KiB
Text
81 lines
1.7 KiB
Text
# Template build file for "git".
|
|
pkgname=git
|
|
version=1.8.3
|
|
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=f1d3c6d683f8f15035a8d0f3eb30ed160ff6607111dfc6026d8836307aebc53a
|
|
|
|
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl"
|
|
makedepends="openssl-devel libcurl-devel expat-devel python-devel"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
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 "$CROSS_BUILD" ]; then
|
|
make ${makejobs} -C Documentation man
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
if [ -z "$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
|
|
}
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
git-docs_package() {
|
|
noarch=yes
|
|
short_desc+=" - documentation"
|
|
pkg_install() {
|
|
for f in man1 man5 man7; do
|
|
vmove usr/share/man/${f}
|
|
done
|
|
}
|
|
}
|
|
|
|
git-python_package() {
|
|
noarch=yes
|
|
pycompile_module="git_remote_helpers"
|
|
depends="git python"
|
|
short_desc+=" - python bindings"
|
|
pkg_install() {
|
|
vmove "usr/lib/python*"
|
|
}
|
|
}
|
|
|
|
fi # !CROSS_BUILD
|
|
|
|
git-perl_package() {
|
|
noarch=yes
|
|
depends="git perl"
|
|
short_desc+=" - perl bindings"
|
|
pkg_install() {
|
|
vmove usr/share/perl5
|
|
vmove usr/share/man/man3
|
|
}
|
|
}
|
|
|
|
|
|
git_package() {
|
|
# Required by https://
|
|
depends="ca-certificates"
|
|
pkg_install() {
|
|
vmove all
|
|
}
|
|
}
|