unzip-6.10c23.recipe revision ab5bcc9b
1SUMMARY="Extraction utility for zip archives" 2DESCRIPTION="UnZip is an extraction utility for archives compressed in \ 3.zip format (zipfiles). UnZip can list or extract files from an archive \ 4or test its integrity." 5HOMEPAGE="http://www.info-zip.org/UnZip.html" 6COPYRIGHT="1990-2017 Info-ZIP" 7LICENSE="Info-ZIP" 8REVISION="3" 9SOURCE_URI="http://antinode.info/ftp/info-zip/unzip610c23.zip" 10CHECKSUM_SHA256="a9c3f0b4377aa593a77574e2fb69aeab97e66e93d8b110797f7b329e09848b62" 11SOURCE_DIR="unzip610c23" 12PATCHES="unzip-$portVersion.patchset" 13 14ARCHITECTURES="x86_gcc2 ?x86_64 sparc" 15 16PROVIDES=" 17 unzip = $portVersion 18 cmd:funzip 19 cmd:unzip 20 cmd:unzipsfx 21 cmd:zipgrep 22 cmd:zipinfo 23 " 24REQUIRES=" 25 haiku 26 lib:libiconv 27 " 28 29BUILD_REQUIRES=" 30 haiku_devel 31 devel:libiconv 32 " 33BUILD_PREREQUIRES=" 34 cmd:gcc 35 cmd:make 36 " 37 38BUILD() 39{ 40 make -f unix/Makefile haiku MANDIR=$manDir/man1 41} 42 43INSTALL() 44{ 45 make -f unix/Makefile install PREFIX=$prefix MANDIR=$manDir/man1 46} 47 48TEST() 49{ 50 make test 51} 52