# HG changeset patch # User Pascal Bellard # Date 1213688726 0 # Node ID 7dacb27857cf713bf997184dfc15888d66e84c74 # Parent d62df896a773d190063c83c124b67543ca88cd9d Add unzip (5.52) diff -r d62df896a773 -r 7dacb27857cf unzip/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unzip/receipt Tue Jun 17 07:45:26 2008 +0000 @@ -0,0 +1,26 @@ +# SliTaz package receipt. + +PACKAGE="unzip" +VERSION="5.52" +CATEGORY="system-tools" +SHORT_DESC="Zip dearchiver." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="unzip552.tar.gz" +WEB_SITE="http://www.info-zip.org/" +WGET_URL="ftp://tug.ctan.org/tex-archive/tools/zip/info-zip/src/$TARBALL" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make -f unix/Makefile generic + make -f unix/Makefile prefix=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/bin + cp -a $_pkg/bin/unzip $fs/usr/bin +} +