opt/git/Pkgfile

24 lines
521 B
Plaintext
Raw Normal View History

2006-02-23 15:26:10 +00:00
# Description: Directory content manager
# URL: http://www.kernel.org/pub/software/scm/git/
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
# Depends on: curl, rcs, perl, python
2006-06-09 21:35:05 +00:00
# Nice to have: tk
2006-02-23 15:26:10 +00:00
name=git
2006-10-02 09:18:25 +00:00
version=1.4.2.3
2006-09-13 22:25:53 +00:00
release=1
source=(http://www.kernel.org/pub/software/scm/$name/$name-{,manpages-}$version.tar.bz2)
2006-02-23 15:26:10 +00:00
build() {
2006-02-23 15:26:10 +00:00
cd $name-$version
2006-07-02 09:57:31 +00:00
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
2006-02-23 15:26:10 +00:00
}