2008-10-04 04:29:49 +00:00
|
|
|
# Template build file for 'git".
|
|
|
|
pkgname=git
|
2012-04-04 06:28:06 +00:00
|
|
|
version=1.7.9.6
|
2011-10-03 16:14:55 +00:00
|
|
|
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
|
2008-09-30 13:22:57 +00:00
|
|
|
short_desc="GIT Tree History Storage Tool"
|
2009-03-02 23:05:47 +00:00
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-19 17:03:17 +00:00
|
|
|
homepage="http://git-scm.com/"
|
|
|
|
license="GPL-2"
|
2012-04-04 06:28:06 +00:00
|
|
|
checksum=3952a9159740a25329c763266a93de9b76e77b680a1d03ea349bfe088aebeed1
|
2008-09-30 13:22:57 +00:00
|
|
|
long_desc="
|
2011-07-13 23:21:02 +00:00
|
|
|
GIT is a directory content manager designed to handle absolutely massive
|
2008-09-30 13:22:57 +00: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 14:34:27 +00:00
|
|
|
|
2010-11-17 20:08:18 +00:00
|
|
|
subpackages="git-docs git-perl git-python"
|
2010-11-02 07:31:35 +00:00
|
|
|
|
2011-10-03 16:14:55 +00:00
|
|
|
Add_dependency build asciidoc
|
|
|
|
Add_dependency build xmlto
|
2009-12-07 09:16:52 +00:00
|
|
|
Add_dependency build perl
|
2012-01-30 19:20:18 +00:00
|
|
|
Add_dependency build openssl-devel
|
2010-05-12 05:33:29 +00:00
|
|
|
Add_dependency build libcurl-devel
|
2009-12-07 09:16:52 +00:00
|
|
|
Add_dependency build expat-devel
|
2010-11-17 20:08:18 +00:00
|
|
|
Add_dependency build python-devel
|
2010-05-12 05:33:29 +00:00
|
|
|
|
2011-11-02 07:43:32 +00:00
|
|
|
do_configure() {
|
2011-08-25 18:46:12 +00:00
|
|
|
./configure ${CONFIGURE_SHARED_ARGS} --with-curl --with-expat \
|
|
|
|
--without-tcltk
|
2010-04-09 16:29:18 +00:00
|
|
|
}
|
2011-06-23 17:08:34 +00:00
|
|
|
|
2011-11-02 07:43:32 +00:00
|
|
|
do_build() {
|
2011-08-25 18:46:12 +00:00
|
|
|
make ${makejobs} && make ${makejobs} -C Documentation man
|
|
|
|
}
|
|
|
|
|
2011-11-02 07:43:32 +00:00
|
|
|
do_install() {
|
2011-08-25 18:46:12 +00:00
|
|
|
make DESTDIR=${DESTDIR} install install-doc
|
|
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
|
|
etc/bash_completion.d git
|
2011-06-23 17:08:34 +00:00
|
|
|
}
|