void-packages/srcpkgs/git/template

33 lines
904 B
Plaintext
Raw Normal View History

2012-12-28 09:14:34 +01:00
# Template build file for "git".
pkgname=git
2013-01-15 11:27:47 +01:00
version=1.8.1.1
2012-12-28 09:14:34 +01:00
revision=1
short_desc="GIT Tree History Storage Tool"
maintainer="Juan RP <xtraeme@gmail.com>"
2011-06-19 19:03:17 +02:00
homepage="http://git-scm.com/"
license="GPL-2"
2012-05-31 22:45:18 +02:00
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
2013-01-15 11:27:47 +01:00
checksum=8b5bd081dc38f3e14acc86f234231a9a46d1e9a990c8c732aed6856d2714dff6
2012-11-27 00:42:38 +01:00
subpackages="git-docs git-perl git-python"
# Required by https://
depends="ca-certificates"
makedepends="xmlto>=0.0.25_2 asciidoc perl openssl-devel libcurl-devel
expat-devel python-devel"
2012-11-27 00:42:38 +01:00
2011-11-02 08:43:32 +01:00
do_configure() {
2012-10-18 22:10:12 +02:00
./configure ${CONFIGURE_SHARED_ARGS} --with-curl \
--with-expat --without-tcltk
}
2011-06-23 19:08:34 +02:00
2011-11-02 08:43:32 +01:00
do_build() {
2011-08-25 20:46:12 +02:00
make ${makejobs} && make ${makejobs} -C Documentation man
}
2011-11-02 08:43:32 +01:00
do_install() {
make NO_INSTALL_HARDLINKS=1 DESTDIR=${DESTDIR} \
install 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
}