git: update to 1.7.6.1.

This commit is contained in:
Juan RP 2011-08-25 20:46:12 +02:00
parent 60513e7f0f
commit 151c2019f4

View file

@ -1,15 +1,13 @@
# Template build file for 'git". # Template build file for 'git".
pkgname=git pkgname=git
version=1.7.6 version=1.7.6.1
distfiles="http://www.kernel.org/pub/software/scm/git/git-$version.tar.bz2" distfiles="http://www.kernel.org/pub/software/scm/git/git-$version.tar.bz2"
build_style=gnu_configure build_style=custom-install
configure_args="--with-curl --with-expat --without-tcltk"
make_install_args="install-doc"
short_desc="GIT Tree History Storage Tool" short_desc="GIT Tree History Storage Tool"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://git-scm.com/" homepage="http://git-scm.com/"
license="GPL-2" license="GPL-2"
checksum=778795cece63cd758192378f3a999870cea290181b3a4c9de573c77192561082 checksum=856d4197ef7172938b0b44e55174c7d7ddfaf5e844e04960322c49eda9f3a246
long_desc=" long_desc="
GIT is a directory content manager designed to handle absolutely massive GIT is a directory content manager designed to handle absolutely massive
projects with speed and efficiency, and the release of the 2.6.12 (and later) projects with speed and efficiency, and the release of the 2.6.12 (and later)
@ -38,15 +36,20 @@ Add_dependency build xmlto
Add_dependency build diffutils Add_dependency build diffutils
Add_dependency build python-devel Add_dependency build python-devel
post_build() do_configure()
{ {
# Build the manpages. ./configure ${CONFIGURE_SHARED_ARGS} --with-curl --with-expat \
make -C Documentation man --without-tcltk
} }
post_install() do_build()
{ {
mkdir -p ${DESTDIR}/etc/bash_completion.d make ${makejobs} && make ${makejobs} -C Documentation man
install -D -m644 contrib/completion/git-completion.bash \ }
${DESTDIR}/etc/bash_completion.d/git
do_install()
{
make DESTDIR=${DESTDIR} install install-doc
vinstall contrib/completion/git-completion.bash 644 \
etc/bash_completion.d git
} }