wok view barcode/receipt @ rev 15263

barcode: remove wrong error triggers
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 24 17:35:45 2013 +0000 (2013-09-24)
parents 9fe42091b4be
children 11b5e93cb5f2
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/barcode/"
11 WGET_URL="ftp://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure $CONFIGURE_ARGS 2>&1 | grep -v 'sed: confdefs' &&
18 make &&
19 make prefix=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $install/bin $fs/usr
27 cp -a $install/lib $fs/usr
28 }