wok view zip/receipt @ rev 12154

Up: thunderbird (11.0) security fixes
author Dominique Corbex <domcox@slitaz.org>
date Fri Mar 16 14:57:33 2012 +0100 (2012-03-16)
parents a1c1d35d9f92
children 191b99ca9dc2
line source
1 # SliTaz package receipt.
3 PACKAGE="zip"
4 VERSION="3.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Compressor utilities compatible with the DOS PKZIP."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="zip30.tgz"
9 WEB_SITE="http://www.info-zip.org/"
10 WGET_URL="ftp://ftp.info-zip.org/pub/infozip/src/$TARBALL"
11 TAGS="archive compression"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 make -f unix/Makefile generic_gcc
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/bin
24 cp -a $src/zip $fs/usr/bin
25 cp -a $src/zipcloak $fs/usr/bin
26 cp -a $src/zipnote $fs/usr/bin
27 cp -a $src/zipsplit $fs/usr/bin
28 }