wok annotate barcode/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents e5ae411e1d8c
children d21c0c760517
rev   line source
devl547@5631 1 # SliTaz package receipt.
devl547@5631 2
devl547@5631 3 PACKAGE="barcode"
devl547@5631 4 VERSION="0.98"
devl547@5631 5 CATEGORY="utilities"
devl547@5631 6 SHORT_DESC="barcode generator"
devl547@5631 7 MAINTAINER="devl547@gmail.com"
devl547@5631 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5631 9 WEB_SITE="http://www.gnu.org/software/barcode/"
devl547@5631 10 WGET_URL="ftp://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"
devl547@5631 11
devl547@5631 12 # Rules to configure and make the package.
devl547@5631 13 compile_rules()
devl547@5631 14 {
devl547@5631 15 cd $src
slaxemulator@10281 16 ./configure $CONFIGURE_ARGS &&
slaxemulator@10281 17 make &&
slaxemulator@10281 18 make prefix=$DESTDIR install
devl547@5631 19 }
devl547@5631 20
devl547@5631 21 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5631 22 genpkg_rules()
devl547@5631 23 {
devl547@5631 24 mkdir -p $fs/usr
devl547@5631 25 cp -a $_pkg/bin $fs/usr
devl547@5631 26 cp -a $_pkg/lib $fs/usr
devl547@5631 27 }