opt/git/Pkgfile

41 lines
1.1 KiB
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Directory content manager
2016-04-01 22:12:49 +02:00
# URL: http://www.kernel.org/pub/software/scm/git/docs
2012-06-20 19:51:36 +02:00
# Maintainer: Thomas Penteker, tek at serverop dot de
2016-04-01 22:12:49 +02:00
# Packager: Tilman Sauerbeck, tilman at crux dot nu
# 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
2017-10-03 22:27:35 +02:00
version=2.14.2
2016-05-27 13:13:31 +02:00
release=1
2015-04-21 22:46:21 +02:00
source=(https://www.kernel.org/pub/software/scm/git/git-{,manpages-}$version.tar.xz
2017-07-28 14:34:14 +02:00
git gitd.rc)
2006-02-23 16:26:10 +01:00
build() {
2017-07-28 14:34:14 +02:00
cd $name-$version
2006-02-23 16:26:10 +01:00
2017-07-28 14:34:14 +02:00
# install Error.pm. this pretty much sucks, but i'm too lazy to
# investigate whether there's a better way.
sed -i -e '47d' -e '49d' perl/Makefile.PL
2012-06-22 20:39:32 +02:00
2017-07-28 14:34:14 +02:00
make CFLAGS="$CFLAGS" prefix=/usr gitexecdir=/usr/lib/git-core \
INSTALLSITEMAN3DIR=/usr/share/man/man3 DESTDIR=$PKG install
2017-07-28 14:34:14 +02:00
cd $SRC
2017-07-28 14:34:14 +02:00
for i in man*; do
install -d $PKG/usr/share/man/$i
install -m 644 $i/* $PKG/usr/share/man/$i;
done
2017-07-28 14:34:14 +02:00
find $PKG \( -name perllocal.pod -o -name .packlist \) -delete
rm -rf $PKG/usr/share/{locale,gitk}
2015-04-21 22:46:21 +02:00
2017-07-28 14:34:14 +02:00
# install the git ports driver
install -d $PKG/etc/ports/drivers
install $SRC/git $PKG/etc/ports/drivers/git
install -D $SRC/gitd.rc $PKG/etc/rc.d/gitd
2015-04-21 22:46:21 +02:00
2006-02-23 16:26:10 +01:00
}