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

Add pciids. This is so pciutils doesn't have to download anything.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 16 07:54:18 2011 +0000 (2011-10-16)
parents cf7db3bc3bbb
children 5ebcbcc330d5
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-good"
4 VERSION="0.10.29"
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 hal 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 hal-dev jack-audio-connection-kit-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 -j 4 &&
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 }