wok view barcode/receipt @ rev 9470

Remove some uneeded strips (thoses ones are handled by Tazwok)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 01:29:52 2011 +0200 (2011-04-04)
parents 261db34754f3
children e5ae411e1d8c
line source
1 # SliTaz package receipt.
3 PACKAGE="barcode"
4 VERSION="0.98"
5 CATEGORY="utilities"
6 SHORT_DESC="barcode generator"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/barcode/"
10 WGET_URL="ftp://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure
17 make
18 make prefix=$PWD/_pkg install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr
25 strip $_pkg/lib/*
26 cp -a $_pkg/bin $fs/usr
27 cp -a $_pkg/lib $fs/usr
28 }