mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 06:28:55 +02:00
* Referring the current haiku version explicitly is not needed, since the RequiresUpdater takes care of setting the version of Haiku used for building a package.
57 lines
1013 B
Plaintext
57 lines
1013 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"
|
|
REVISION="1"
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
SRC_URI="http://antinode.info/ftp/info-zip/unzip610c11.zip"
|
|
CHECKSUM_SHA256="13d92580d89e7c4199ba9a883957cc3676f0235dcac6f701f8f951b015c8d4c8"
|
|
SOURCE_DIR="unzip610c11"
|
|
PATCHES="unzip-$portVersion.patchset"
|
|
|
|
PROVIDES="
|
|
unzip = $portVersion
|
|
cmd:funzip
|
|
cmd:unzip
|
|
cmd:unzipsfx
|
|
cmd:zipgrep
|
|
cmd:zipinfo
|
|
"
|
|
|
|
REQUIRES="
|
|
haiku
|
|
lib:libiconv
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libiconv
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:gcc
|
|
cmd:make
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make -f beos/Makefile \
|
|
prefix=$prefix MANDIR=$manDir BINDIR=$binDir
|
|
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $binDir
|
|
mkdir -p $manDir/man1
|
|
make -f beos/Makefile install \
|
|
prefix=$prefix MANDIR=$manDir BINDIR=$binDir
|
|
}
|
|
|
|
LICENSE="Info-ZIP"
|
|
COPYRIGHT="1995-2014 Greg Roelofs"
|