wok-undigest annotate fbgrab/receipt @ rev 762

airstrike: fix data path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 12 13:18:48 2012 +0200 (2012-07-12)
parents 59946c66afd3
children
rev   line source
pascal@758 1 # SliTaz package receipt.
pascal@758 2
pascal@758 3 PACKAGE="fbgrab"
pascal@758 4 VERSION="1.0"
pascal@758 5 CATEGORY="misc"
pascal@758 6 SHORT_DESC="Frame buffer grabber."
pascal@758 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@758 8 WEB_SITE="http://hem.bredband.net/gmogmo/fbgrab/"
pascal@758 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@758 10 WGET_URL="${WEB_SITE}$TARBALL"
pascal@758 11
pascal@758 12 DEPENDS="libpng zlib"
pascal@758 13 BUILD_DEPENDS="libpng-dev zlib-dev"
pascal@758 14
pascal@758 15 # Rules to configure and make the package.
pascal@758 16 compile_rules()
pascal@758 17 {
pascal@758 18 cd $src
pascal@761 19 sed -i '/splint/d' Makefile
pascal@758 20 make
pascal@758 21 }
pascal@758 22
pascal@758 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@758 24 genpkg_rules()
pascal@758 25 {
pascal@758 26 mkdir -p $fs/usr/bin
pascal@758 27 cp $src/fbgrab $fs/usr/bin
pascal@758 28 }