mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
x86_64 is used as a baseline: the "x86_64" entry, whatever status it has, is transformed into "all", and then the other entries in ARCHITECTURES either dropped or rearranged appropriately.
62 lines
1.8 KiB
Bash
62 lines
1.8 KiB
Bash
SUMMARY="A script for managing file archives"
|
|
DESCRIPTION="The main command is aunpack which extracts files from an archive. \
|
|
Did you ever extract files from an archive, not checking whether the \
|
|
files were located in a subdirectory or in the top directory of the archive, \
|
|
resulting in files scattered all over the place? aunpack overcomes this problem \
|
|
by first extracting to a new directory. If there was only a single file in the archive, \
|
|
that file is moved to the original directory. aunpack also prevents local files from \
|
|
being overwritten by mistake.
|
|
|
|
The other commands provided are apack (to create archives), als (to list files in \
|
|
archives), and acat (to extract files to standard out). As atool invokes external \
|
|
programs to handle the archives, not all commands may be supported for a \
|
|
certain type of archives.
|
|
|
|
atool identifies archives by their file extension. Sometimes this is not possible \
|
|
- for instance rar archives usually have varying numeric file extensions. In those \
|
|
cases when atool can't identify the format, file is used instead. (atool can be \
|
|
configured not to use file.)"
|
|
HOMEPAGE="http://www.nongnu.org/atool/"
|
|
COPYRIGHT="2001-2011 Oskar Liljeblad"
|
|
LICENSE="GNU GPL v3"
|
|
REVISION="2"
|
|
SOURCE_URI="http://savannah.nongnu.org/download/atool/atool-$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="aaf60095884abb872e25f8e919a8a63d0dabaeca46faeba87d12812d6efc703b"
|
|
|
|
ARCHITECTURES="all"
|
|
|
|
PROVIDES="
|
|
atool = $portVersion
|
|
cmd:acat = $portVersion
|
|
cmd:adiff = $portVersion
|
|
cmd:als = $portVersion
|
|
cmd:apack = $portVersion
|
|
cmd:arepack = $portVersion
|
|
cmd:atool = $portVersion
|
|
cmd:aunpack = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
cmd:perl
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
cmd:awk
|
|
cmd:perl
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|