# Description: Gestionnaire de revision de dossiers # URL: http://git-scm.com/ # Maintainer: NuTyX core team # Packager: thierryn1 at hispeed dot ch # Depends on: curl, libidn, libldap, expat # Run on: curl,libidn,expat name=git version=1.7.11.1 release=1 source=(http://git-core.googlecode.com/files/$name-{,manpages-}$version.tar.gz) build() { cd $name-$version ./configure --prefix=/usr \ --libexecdir=/usr/lib \ --with-gitconfig=/etc/gitconfig \ --with-python=/usr/bin/python2 make make DESTDIR=$PKG install cd .. for i in man*; do install -d $PKG/usr/share/man/$i install -m 644 $i/* $PKG/usr/share/man/$i; done find $PKG -name perllocal.pod -delete find $PKG -name .packlist -delete }