opt/git/Pkgfile

42 lines
1.0 KiB
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Directory content manager
2007-01-08 15:08:12 +01:00
# URL: http://www.kernel.org/pub/software/scm/git/docs
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
2010-03-22 09:50:19 +01:00
# Depends on: expat, curl, python
2006-06-09 23:35:05 +02:00
# Nice to have: tk
2006-02-23 16:26:10 +01:00
name=git
2012-04-29 13:48:50 +02:00
version=1.7.10
2010-07-25 12:43:53 +02:00
release=1
2011-11-15 18:52:26 +01:00
source=(https://git-core.googlecode.com/files/$name-{,manpages-}$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
2006-02-23 16:26:10 +01:00
cd $name-$version
2006-10-26 20:57:42 +02:00
# install Error.pm. this pretty much sucks, but i'm too lazy to
# investigate whether there's a better way.
2012-04-29 13:48:50 +02:00
sed -i -e '34,35d' -e '37d' perl/Makefile.PL
2006-10-26 20:57:42 +02:00
2008-08-18 21:01:31 +02:00
make CFLAGS="$CFLAGS" prefix=/usr gitexecdir=/usr/lib/git-core \
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
2007-09-02 10:48:20 +02:00
install -d $PKG/usr/man/man3
2012-04-29 13:48:50 +02:00
mv $PKG/usr/share/man/man3/{Git,Git::I18N,private-Error}.3pm \
2007-09-02 10:48:20 +02:00
$PKG/usr/man/man3/
rmdir $PKG/usr/share/{man/man3,man}
find $PKG -name perllocal.pod -delete
find $PKG -name .packlist -delete
2008-02-02 12:53:41 +01:00
rm -rf $PKG/usr/share/gitk/lib/msgs
rmdir $PKG/usr/share/gitk/{lib,}
2012-04-29 13:48:50 +02:00
rm -rf $PKG/usr/share/locale
2006-02-23 16:26:10 +01:00
}