wok view swfdec/receipt @ rev 14053

Add freetuxtv
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 19 18:35:30 2013 +0100 (2013-02-19)
parents
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="swfdec"
4 VERSION="0.9.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="Macromedia Flash decoding library"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://swfdec.freedesktop.org/"
10 WGET_URL="http://swfdec.freedesktop.org/download/swfdec/0.9/$TARBALL"
11 BUILD_DEPENDS="glib-dev liboil-dev pango-dev gtk+-dev libsoup-dev \
12 cairo-dev alsa-lib-dev gstreamer-dev gst-plugins-base-dev"
13 DEPENDS="glib liboil pango gtk+ libsoup cairo alsa-lib gstreamer gst-plugins-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS \
21 --enable-gtk --with-audio="alsa" &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
31 }