36 lines
881 B
Plaintext
36 lines
881 B
Plaintext
# Description: Directory content manager
|
|
# URL: http://www.kernel.org/pub/software/scm/git/docs
|
|
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: curl
|
|
# Nice to have: tk
|
|
|
|
name=git
|
|
version=1.5.3.8
|
|
release=1
|
|
source=(http://www.kernel.org/pub/software/scm/$name/$name-{,manpages-}$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
# install Error.pm. this pretty much sucks, but i'm too lazy to
|
|
# investigate whether there's a better way.
|
|
sed -i -e '15,16d' -e '18d' perl/Makefile.PL
|
|
|
|
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
|
|
|
|
install -d $PKG/usr/man/man3
|
|
mv $PKG/usr/share/man/man3/{Git,private-Error}.3pm \
|
|
$PKG/usr/man/man3/
|
|
rmdir $PKG/usr/share/{man/man3,man}
|
|
|
|
find $PKG -name perllocal.pod -delete
|
|
find $PKG -name .packlist -delete
|
|
}
|