37 lines
841 B
Text
Executable file
37 lines
841 B
Text
Executable file
app=tar
|
|
version=1.34
|
|
build=1sml
|
|
homepage="https://www.gnu.org/software/tar/"
|
|
download="https://ftp.gnu.org/gnu/tar/tar-$version.tar.xz"
|
|
desc="GNU archiving utility"
|
|
requires="bzip2 gzip xz attr acl lzip plzip"
|
|
|
|
build() {
|
|
mkandenterbuilddir
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
# The "A lone zero block at %s" messages also cause problems:
|
|
applypatch $srcdir/tar.nolonezero.diff
|
|
|
|
FORCE_UNSAFE_CONFIGURE=1 \
|
|
CFLAGS="$CFLAGS -static" \
|
|
./configure \
|
|
--prefix="" \
|
|
--sbindir=/bin \
|
|
--libexecdir=/lib \
|
|
--enable-backup-scripts
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp COPYING $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
90b764cd2128d6c316a0cd9e24ae734ee94b1e2794e6cf724e60592d23ca6dac2d9a44552054610747cadd733263ee56971062f4201227bfda93966f287984bd tar.nolonezero.diff
|
|
"
|