2008-10-04 06:29:49 +02:00
|
|
|
# Template build file for 'git".
|
|
|
|
pkgname=git
|
2011-11-02 08:43:32 +01:00
|
|
|
version=1.7.7.1
|
2011-10-03 18:14:55 +02:00
|
|
|
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
|
|
|
|
#distfiles="http://www.kernel.org/pub/software/scm/git/git-$version.tar.bz2"
|
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"
|
2011-11-02 08:43:32 +01:00
|
|
|
checksum=6a7909226b2b249c7970b0d36054dbcfe58e6558cc4d671ea1f5ac6a69d8cf4f
|
2008-09-30 15:22:57 +02:00
|
|
|
long_desc="
|
2011-07-14 01:21:02 +02:00
|
|
|
GIT is a directory content manager designed to handle absolutely massive
|
2008-09-30 15:22:57 +02:00
|
|
|
projects with speed and efficiency, and the release of the 2.6.12 (and later)
|
|
|
|
versions of the Linux kernel as well as more and more other projects switching
|
|
|
|
to it would indicate that it does this task well.
|
|
|
|
|
|
|
|
GIT falls in the category of distributed version control software, similar
|
|
|
|
to e.g. GNU Arch or Monotone (or, in the commercial world, BitKeeper). Every
|
|
|
|
GIT working directory is a full-fledged repository with full revision tracking
|
|
|
|
capabilities, not dependent on network access to a central server."
|
2008-10-20 16:34:27 +02:00
|
|
|
|
2010-11-17 21:08:18 +01:00
|
|
|
subpackages="git-docs git-perl git-python"
|
2009-12-07 10:16:52 +01:00
|
|
|
Add_dependency run glibc
|
|
|
|
Add_dependency run zlib
|
|
|
|
Add_dependency run expat
|
2010-11-02 08:31:35 +01:00
|
|
|
Add_dependency run libssl
|
2010-05-12 07:33:29 +02:00
|
|
|
Add_dependency run libcurl
|
2010-11-02 08:31:35 +01:00
|
|
|
|
2011-10-03 18:14:55 +02:00
|
|
|
Add_dependency build asciidoc
|
|
|
|
Add_dependency build xmlto
|
2009-12-07 10:16:52 +01:00
|
|
|
Add_dependency build perl
|
2010-05-12 07:33:29 +02:00
|
|
|
Add_dependency build libcurl-devel
|
2009-12-07 10:16:52 +01:00
|
|
|
Add_dependency build expat-devel
|
|
|
|
Add_dependency build openssl-devel
|
2010-11-17 21:08:18 +01:00
|
|
|
Add_dependency build python-devel
|
2010-05-12 07:33:29 +02:00
|
|
|
|
2011-11-02 08:43:32 +01:00
|
|
|
do_configure() {
|
2011-08-25 20:46:12 +02:00
|
|
|
./configure ${CONFIGURE_SHARED_ARGS} --with-curl --with-expat \
|
|
|
|
--without-tcltk
|
2010-04-09 18:29:18 +02:00
|
|
|
}
|
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() {
|
2011-08-25 20:46:12 +02:00
|
|
|
make DESTDIR=${DESTDIR} install install-doc
|
|
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
|
|
etc/bash_completion.d git
|
2011-06-23 19:08:34 +02:00
|
|
|
}
|