Files
haikuports/app-arch/tar/tar-1.28.recipe
2015-11-28 11:01:29 +00:00

59 lines
1.5 KiB
Bash

SUMMARY="Saves and restores files to/from a tape or disk archive"
DESCRIPTION="The Tar program provides the ability to create tar archives, as \
well as various other kinds of manipulation. For example, you can use Tar on \
previously created archives to extract files, to store additional files, or \
to update or list files which were already stored.
Initially, tar archives were used to store files conveniently on magnetic \
tape. The name \"Tar\" comes from this use; it stands for tape archiver. Despite \
the utility's name, Tar can direct its output to available devices, files, or \
other programs (using pipes), it can even access remote devices or files (as \
archives)."
HOMEPAGE="http://www.gnu.org/software/tar/"
COPYRIGHT="1990-2011 Free Software Foundation, Inc."
LICENSE="GNU GPL v3"
REVISION="1"
SOURCE_URI="http://ftp.gnu.org/gnu/tar/tar-$portVersion.tar.bz2"
CHECKSUM_SHA256="60e4bfe0602fef34cd908d91cf638e17eeb09394d7b98c2487217dc4d3147562"
PATCHES="tar-$portVersion.patchset"
ARCHITECTURES="x86_gcc2 ?x86 x86_64 arm"
PROVIDES="
tar = $portVersion compat >= 1
cmd:tar = $portVersion compat >= 1
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:automake
cmd:autoreconf
cmd:gcc
cmd:ld
cmd:make
cmd:sed
"
defineDebugInfoPackage tar $binDir/tar
BUILD()
{
runConfigure ./configure \
--disable-nls \
--disable-gcc-warnings \
LDFLAGS="-lnetwork" CFLAGS="-D_BSD_SOURCE" \
FORCE_UNSAFE_CONFIGURE=1
make $jobArgs
}
INSTALL()
{
make install
rm $libDir/charset.alias
}