wok view zvbi/receipt @ rev 12017

Up zim 0.55
author Antoine Bodin <gokhlayeh@slitaz.org>
date Tue Mar 06 13:37:22 2012 +0100 (2012-03-06)
parents 638685c83b66
children b0c60d808e5c
line source
1 # SliTaz package receipt.
3 PACKAGE="zvbi"
4 VERSION="0.2.33"
5 CATEGORY="multimedia"
6 SHORT_DESC="VBI capture and decoding library."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="libpng xorg-libX11"
9 BUILD_DEPENDS="libpng-dev xorg-libX11-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome"
12 WGET_URL="$SF_MIRROR/zapping/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 patch -Np1 -i $stuff/fix-includes.patch
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --disable-static \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/sbin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }