wok view gst-plugins-good/receipt @ rev 9215

mc, samba, perl-curses: use ncursesw instead of ncurses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 11 11:47:15 2011 +0100 (2011-03-11)
parents e6a70398c32d
children 8446e6bd92c2
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-good"
4 VERSION="0.10.27"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Good Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="libxml2 gst-plugins-base gtk+ bzlib dbus flac hal libdv taglib \
9 xorg-libXcomposite xorg-libXcursor xorg-libXfixes xorg-libXinerama \
10 xorg-libXrandr xorg-libXrender GConf libsoup esound libavc1394 libiec61883 \
11 libv4l libtasn1 wavpack"
12 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev libogg-dev liboil-dev gstreamer-dev libxml2-dev glib-dev libjpeg jpeg-dev bzip2-dev wavpack-dev"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="http://gstreamer.freedesktop.org/"
15 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 sed -i 's/String::String/String/' ext/taglib/gstapev2mux.cc
22 ./configure \
23 --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
24 --enable-experimental --disable-static --disable-speex &&
25 make -j 4 &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib $fs/usr/share
33 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
34 cp -a $_pkg/usr/share/gstreamer* $fs/usr/share
35 rm $fs/usr/lib/gstreamer*/*.*a
37 }