Files
haikuports/app-arch/unzip/unzip-6.0.recipe
Adrien Destugues 6e05d6bcd6 unzip: fix recipe syntax.
Still does not build.
2014-06-10 23:05:46 +02:00

44 lines
838 B
Plaintext

SUMMARY="Extraction utility for zip archives."
DESCRIPTION="
UnZip is an extraction utility for archives compressed in \
.zip format (zipfiles). UnZip can list or extract files from an archive \
or test its integrity.
"
HOMEPAGE="http://www.info-zip.org/UnZip.html"
SRC_URI="http://downloads.sourceforge.net/project/infozip/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip60.tar.gz"
CHECKSUM_SHA256="036d96991646d0449ed0aa952e4fbe21b476ce994abc276e49d30e686708bd37"
REVISION="1"
ARCHITECTURES="!x86_gcc2"
PROVIDES="
unzip = $portVersion
"
BUILD_PREREQUIRES="
haiku_devel >= $haikuVersion
cmd:gcc
cmd:make
"
SOURCE_DIR="unzip60"
BUILD()
{
make -f beos/Makefile \
PREFIX=$prefix MANDIR=$manDir
}
INSTALL()
{
make -f beos/Makefile install
}
TEST()
{
make test
# make check
}
LICENSE="Info-ZIP"
COPYRIGHT="1995-2014 Greg Roelofs"