wok view dvgrab/receipt @ rev 13386

grub2: fix build with flex 2.5.37
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Sep 23 13:39:19 2012 +0200 (2012-09-23)
parents
children 7abf990db309
line source
1 # SliTaz package receipt.
3 PACKAGE="dvgrab"
4 VERSION="3.5"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="Saves audio and video data from an IEEE (FireWire) digital source"
8 WEB_SITE="http://www.kinodv.org"
9 DEPENDS="libdv libavc1394 jpeg libiec61883 gcc-lib-base"
10 BUILD_DEPENDS="pkg-config libdv-dev libraw1394-dev libavc1394-dev libiec61883-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://downloads.sourceforge.net/kino/$TARBALL"
13 TAGS="firewire video"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }