wok view zip/receipt @ rev 5473

Disable docmentation for gtkmm.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed May 05 15:07:01 2010 +0000 (2010-05-05)
parents 5d4d91cce2bb
children e77b044d8ea6
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.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 strip -s $fs/usr/bin/*
29 }