core/tar/Pkgfile

24 lines
519 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GNU tar
# URL: http://www.gnu.org/software/tar/tar.html
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=tar
2019-01-03 18:10:47 +01:00
version=1.31
2016-05-20 12:27:14 +02:00
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2006-02-23 16:26:10 +01:00
./configure --prefix= \
2007-07-06 08:55:49 +02:00
--libexec=/usr/lib/tar \
2015-07-25 21:02:21 +02:00
--mandir=/usr/share/man \
2010-11-11 17:57:37 +01:00
--disable-nls \
FORCE_UNSAFE_CONFIGURE=1
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/share
2006-02-23 16:26:10 +01:00
}