wok view zip/receipt @ rev 897

module-init-tools: use lzlib to load modules compressed with gzip or lzma
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 12 11:53:31 2008 +0000 (2008-06-12)
parents 534cedd9d753
children 637e958c066c
line source
1 # SliTaz package receipt.
3 PACKAGE="zip"
4 VERSION="2.32"
5 CATEGORY="utilities"
6 SHORT_DESC="Compressor utilities compatible with the DOS PKZIP."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="zip232.tar.gz"
9 WEB_SITE="http://www.info-zip.org/"
10 WGET_URL="ftp://ftp.dante.de/tex-archive/tools/zip/info-zip/src/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 make -f unix/Makefile generic_gcc
17 }
19 # Rules to gen a SliTaz package suitable for Tazpkg.
20 genpkg_rules()
21 {
22 mkdir -p $fs/usr/bin
23 cp -a $src/zip $fs/usr/bin
24 cp -a $src/zipcloak $fs/usr/bin
25 cp -a $src/zipnote $fs/usr/bin
26 cp -a $src/zipsplit $fs/usr/bin
27 strip -s $fs/usr/bin/*
28 }