Files
haikuports/app-arch/unzip/unzip-6.10c23.recipe
Adrien Destugues 4a6698c36b unzip: update to latest beta and fix attributes extraction.
The same problem seems to be present in the patches to unzip 6.0.

The fix to the attribute writing is trivial (see the patchset for
details).

Really fixes #2075.
2018-01-07 11:17:11 +01:00

52 lines
1009 B
Bash

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"
COPYRIGHT="1995-2014 Greg Roelofs"
LICENSE="Info-ZIP"
REVISION="1"
SOURCE_URI="http://antinode.info/ftp/info-zip/unzip610c23.zip"
SOURCE_DIR="unzip610c23"
CHECKSUM_SHA256="a9c3f0b4377aa593a77574e2fb69aeab97e66e93d8b110797f7b329e09848b62"
PATCHES="unzip-6.10c23.patchset"
ARCHITECTURES="x86_gcc2"
PROVIDES="
unzip = $portVersion
cmd:funzip
cmd:unzip
cmd:unzipsfx
cmd:zipgrep
cmd:zipinfo
"
REQUIRES="
haiku
lib:libiconv
"
BUILD_REQUIRES="
haiku_devel
devel:libiconv
"
BUILD_PREREQUIRES="
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
}