void-packages/srcpkgs/git/template

50 lines
1.3 KiB
Plaintext
Raw Normal View History

2012-12-28 08:14:34 +00:00
# Template build file for "git".
pkgname=git
2014-06-27 07:28:23 +00:00
version=2.0.1
2014-07-14 09:37:18 +00:00
revision=2
build_style=gnu-configure
2013-12-02 09:35:57 +00:00
configure_args="--with-curl --with-expat --without-tcltk
ac_cv_fread_reads_directories=no ac_cv_snprintf_returns_bogus=no"
make_install_args="NO_INSTALL_HARDLINKS=1"
2013-12-07 07:19:33 +00:00
hostmakedepends="xmlto>=0.0.25_2 asciidoc perl python"
2014-07-14 09:37:18 +00:00
makedepends="libressl-devel libcurl-devel expat-devel ca-certificates"
# Required by https://
depends="ca-certificates"
short_desc="GIT Tree History Storage Tool"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-19 17:03:17 +00:00
homepage="http://git-scm.com/"
license="GPL-2"
2014-03-20 17:30:33 +00:00
distfiles="https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"
2014-06-27 07:28:23 +00:00
checksum=ab12a103523b430d8d3e26ac2e05e759bdb1349f10e13bba48bed98f45c6d4df
2014-03-20 17:30:33 +00:00
post_build() {
2013-12-02 09:35:57 +00:00
make ${makejobs} -C Documentation man
2011-08-25 18:46:12 +00:00
}
post_install() {
2013-12-02 09:35:57 +00:00
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} install-doc
2012-10-18 20:10:12 +00:00
vinstall contrib/completion/git-completion.bash 644 \
2012-12-28 08:14:34 +00:00
usr/share/bash-completion/completions git
vinstall contrib/completion/git-prompt.sh 644 usr/share/git
2011-06-23 17:08:34 +00:00
}
git-docs_package() {
noarch=yes
2013-05-27 07:24:31 +00:00
short_desc+=" - documentation"
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 07:24:31 +00:00
short_desc+=" - perl bindings"
pkg_install() {
vmove usr/share/perl5
vmove usr/share/man/man3
}
}