2008-10-04 06:29:49 +02:00
|
|
|
# Template build file for 'git".
|
|
|
|
pkgname=git
|
2012-11-27 00:42:38 +01:00
|
|
|
version=1.8.0.1
|
2012-07-13 20:30:34 +02:00
|
|
|
revision=1
|
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"
|
2012-05-31 22:45:18 +02:00
|
|
|
distfiles="http://git-core.googlecode.com/files/git-$version.tar.gz"
|
2012-11-27 00:42:38 +01:00
|
|
|
checksum=768191692f28bc9dce0ab5882478d30b220a5733a12ad571eadc83fa0822c2ea
|
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
|
|
|
|
2012-11-27 00:42:38 +01:00
|
|
|
subpackages="git-docs git-perl git-python"
|
|
|
|
# Required by https://
|
|
|
|
depends="ca-certificates"
|
2012-11-27 01:42:09 +01:00
|
|
|
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
|
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
|
2012-10-18 22:10:12 +02:00
|
|
|
vinstall contrib/completion/git-completion.bash 644 \
|
|
|
|
etc/bash_completion.d git
|
2011-06-23 19:08:34 +02:00
|
|
|
}
|