opt/git/Pkgfile

41 lines
1.0 KiB
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Directory content manager
2021-10-14 15:06:50 +02:00
# URL: https://git-scm.com/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: expat curl
# Optional: tk
2006-02-23 16:26:10 +01:00
name=git
2021-10-14 15:06:50 +02:00
version=2.33.1
2021-08-21 23:44:25 +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
2021-10-14 15:06:50 +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
make CFLAGS="$CFLAGS" \
2021-10-14 15:06:50 +02:00
prefix=/usr \
gitexecdir=/usr/lib/git-core \
INSTALLSITEMAN3DIR=/usr/share/man/man3 \
perllibdir=$(perl -e 'use Config; print $Config::Config{'installsitelib'}') \
DESTDIR=$PKG install
prt-get isinst bash-completion && install -Dm644 contrib/completion/git-completion.bash $PKG/usr/share/bash-completion/completions/git
2021-03-16 23:24:37 +01:00
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
2021-03-16 23:24:37 +01:00
install -Dm755 $SRC/git $PKG/etc/ports/drivers/git
2017-07-28 14:34:14 +02:00
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
}