opt/git/Pkgfile
2006-08-13 11:38:41 +00:00

24 lines
523 B
Plaintext

# Description: Directory content manager
# URL: http://www.kernel.org/pub/software/scm/git/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: openssl, curl, perl, python
# Nice to have: tk
name=git
version=1.4.2
release=1
source=(http://www.kernel.org/pub/software/scm/$name/$name-{,manpages-}$version.tar.bz2)
build() {
cd $name-$version
make CFLAGS="$CFLAGS" prefix=/usr DESTDIR=$PKG install
cd $SRC
for i in man*; do
install -d $PKG/usr/man/$i
install -m 644 $i/* $PKG/usr/man/$i;
done
}