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

Up: slitaz-doc (4.2.1)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Feb 19 12:09:24 2012 +0100 (2012-02-19)
parents bd68ef9b49d0
children 43bef37905bc
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-good"
4 VERSION="0.10.30"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer Good Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://gstreamer.freedesktop.org/"
10 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
12 DEPENDS="libxml2 gst-plugins-base gtk+ bzlib dbus flac libdv taglib \
13 xorg-libXcomposite xorg-libXcursor xorg-libXfixes xorg-libXinerama \
14 xorg-libXrandr xorg-libXrender xorg-libXv GConf libsoup esound libavc1394 \
15 libiec61883 libv4l libtasn1 wavpack audiofile"
16 BUILD_DEPENDS="pkg-config gst-plugins-base gst-plugins-base-dev libogg-dev \
17 liboil-dev gstreamer-dev libxml2-dev glib-dev libjpeg jpeg-dev bzip2-dev \
18 wavpack-dev GConf-dev esound-dev flac-dev xorg-libXv-dev audiofile-dev \
19 jack-audio-connection-kit-dev dbus-dev util-linux-ng-uuid-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 sed -i 's/String::String/String/' ext/taglib/gstapev2mux.cc
26 ./configure \
27 --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
28 --enable-experimental --disable-static --disable-speex \
29 $CONFIGURE_ARGS &&
30 make $MAKEFLAGS &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib $fs/usr/share
38 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
39 cp -a $_pkg/usr/share/gstreamer* $fs/usr/share
40 rm $fs/usr/lib/gstreamer*/*.*a
42 }