wok view zip/receipt @ rev 17057

syslinux/c32box: x86_64 auto select
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 21 09:56:57 2014 +0200 (2014-08-21)
parents 02bbaa9d12ba
children 762b649a4d73
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 LICENSE="other"
9 TARBALL="zip30.tgz"
10 WEB_SITE="http://www.info-zip.org/"
11 WGET_URL="ftp://ftp.info-zip.org/pub/infozip/src/$TARBALL"
12 TAGS="archive compression"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 make -f unix/Makefile generic_gcc
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/bin
25 cp -a $src/zip $fs/usr/bin
26 cp -a $src/zipcloak $fs/usr/bin
27 cp -a $src/zipnote $fs/usr/bin
28 cp -a $src/zipsplit $fs/usr/bin
29 }