mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
Removed the full-stop and repeating package name in SUMMARY. Removed hard line breaks, broke up some very long paragraphs and use bullet lists where possible. All done by browsing through HaikuDepot. There may be (many) more left in the whole haikuports repo... Included 10 extended desriptions done by soyoye14 for GCI 2014 (https://www.google-melange.com/gci/task/view/google/gci2014/5240373098053632) Removed/insert whitespace where it seems to be the custom in recipes. Sometimes rearranged elements of a recipe (moving license and copyright up, for example).
62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
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"
|
|
SRC_URI="http://ftp.gnu.org/gnu/tar/tar-1.27.1.tar.bz2"
|
|
CHECKSUM_SHA256="9b0fb3ce8512059337add0da5f8f0f7d7647f2201f5ece24581d620ea60337c6"
|
|
REVISION="2"
|
|
ARCHITECTURES="x86_gcc2 ?x86 x86_64 arm"
|
|
|
|
PATCHES="tar-1.27.1.patchset"
|
|
|
|
PROVIDES="
|
|
tar = $portVersion compat >= 1
|
|
cmd:tar = $portVersion compat >= 1
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
BUILD_REQUIRES="
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
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" \
|
|
FORCE_UNSAFE_CONFIGURE=1
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
|
|
rm $libDir/charset.alias
|
|
}
|