wok annotate zbar/receipt @ rev 10903

Add zbar
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 21 11:42:09 2011 +0200 (2011-07-21)
parents
children 1ad8ae5ccf68
rev   line source
pascal@10903 1 # SliTaz package receipt.
pascal@10903 2
pascal@10903 3 PACKAGE="zbar"
pascal@10903 4 VERSION="0.10"
pascal@10903 5 CATEGORY="utilities"
pascal@10903 6 SHORT_DESC="Decode barcode & QR code."
pascal@10903 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@10903 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pascal@10903 9 WEB_SITE="http://zbar.sourceforge.net/"
pascal@10903 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@10903 11
pascal@10903 12 DEPENDS="jpeg imagemagick pango cairo freetype fontconfig atk gtk+ libgio"
pascal@10903 13 BUILD_DEPENDS="linux-api-headers jpeg-dev imagemagick-dev pango-dev cairo-dev \
pascal@10903 14 freetype-dev fontconfig-dev atk-dev gtk+-dev libgio-dev"
pascal@10903 15
pascal@10903 16 # Rules to configure and make the package.
pascal@10903 17 compile_rules()
pascal@10903 18 {
pascal@10903 19 cd $src
pascal@10903 20 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@10903 21 --localstatedir=/var \
pascal@10903 22 --without-qt \
pascal@10903 23 --without-python \
pascal@10903 24 $CONFIGURE_ARGS &&
pascal@10903 25 make &&
pascal@10903 26 make DESTDIR=$DESTDIR install
pascal@10903 27 }
pascal@10903 28
pascal@10903 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@10903 30 genpkg_rules()
pascal@10903 31 {
pascal@10903 32 mkdir -p $fs/usr/lib
pascal@10903 33 cp -a $_pkg/usr/bin $fs/usr
pascal@10903 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pascal@10903 35 }