2012-12-28 09:14:34 +01:00
|
|
|
# Template build file for "git".
|
2008-10-04 06:29:49 +02:00
|
|
|
pkgname=git
|
2014-05-17 22:53:14 +02:00
|
|
|
version=1.9.3
|
2012-12-28 09:14:34 +01:00
|
|
|
revision=1
|
2013-02-21 21:11:32 +01:00
|
|
|
build_style=gnu-configure
|
2013-12-02 10:35:57 +01:00
|
|
|
configure_args="--with-curl --with-expat --without-tcltk
|
|
|
|
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
|
2013-02-21 21:11:32 +01:00
|
|
|
make_install_args="NO_INSTALL_HARDLINKS=1"
|
2013-12-07 08:19:33 +01:00
|
|
|
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl python"
|
2014-01-01 16:10:11 +01:00
|
|
|
makedepends="openssl-devel libcurl-devel expat-devel ca-certificates"
|
|
|
|
# Required by https://
|
|
|
|
depends="ca-certificates"
|
2008-09-30 15:22:57 +02:00
|
|
|
short_desc="GIT Tree History Storage Tool"
|
2009-03-03 00:05:47 +01:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-19 19:03:17 +02:00
|
|
|
homepage="http://git-scm.com/"
|
|
|
|
license="GPL-2"
|
2014-03-20 18:30:33 +01:00
|
|
|
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
|
2014-05-17 22:53:14 +02:00
|
|
|
checksum=f633865337a378f625bdc72691b7a71013f3b391d2791c5c76e5a0973cc7d05f
|
2014-03-20 18:30:33 +01:00
|
|
|
|
2013-02-21 21:11:32 +01:00
|
|
|
post_build() {
|
2013-12-02 10:35:57 +01:00
|
|
|
make ${makejobs} -C Documentation man
|
2011-08-25 20:46:12 +02:00
|
|
|
}
|
|
|
|
|
2013-02-21 21:11:32 +01:00
|
|
|
post_install() {
|
2013-12-02 10:35:57 +01:00
|
|
|
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} install-doc
|
2012-10-18 22:10:12 +02:00
|
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
2012-12-28 09:14:34 +01:00
|
|
|
usr/share/bash-completion/completions git
|
2011-06-23 19:08:34 +02:00
|
|
|
}
|
2013-04-12 13:13:49 +02:00
|
|
|
|
|
|
|
git-docs_package() {
|
|
|
|
noarch=yes
|
2013-05-27 09:24:31 +02:00
|
|
|
short_desc+=" - documentation"
|
2013-04-12 13:13:49 +02:00
|
|
|
pkg_install() {
|
|
|
|
for f in man1 man5 man7; do
|
|
|
|
vmove usr/share/man/${f}
|
|
|
|
done
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
git-perl_package() {
|
|
|
|
noarch=yes
|
|
|
|
depends="git perl"
|
2013-05-27 09:24:31 +02:00
|
|
|
short_desc+=" - perl bindings"
|
2013-04-12 13:13:49 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/share/perl5
|
|
|
|
vmove usr/share/man/man3
|
|
|
|
}
|
|
|
|
}
|