wok view zip/receipt @ rev 8954

Fix links. It only needed xorg-libXt-dev not xorg-dev.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Mar 01 17:48:58 2011 +0000 (2011-03-01)
parents e77b044d8ea6
children 02bbaa9d12ba
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 strip -s $fs/usr/bin/*
29 }