wok view gst-plugins-bad/receipt @ rev 14920

Up: firefox-langpack-pt_BR (17.0.7esr)
author Richard Dunbar <mojo@slitaz.org>
date Tue Aug 06 01:24:03 2013 +0000 (2013-08-06)
parents b4a9afdadcae
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-bad"
4 VERSION="0.10.23"
5 SERIES="0.10"
6 CATEGORY="multimedia"
7 SHORT_DESC="GStreamer Bad Plugins"
8 MAINTAINER="jozee@slitaz.org"
9 SUGGESTED="libsdl schroedinger"
10 TARBALL="$PACKAGE-$VERSION.tar.xz"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
13 LOCALES="da de es fr id it pt_BR ru zh_CN"
15 DEPENDS="gst-plugins-base faac libpng libvpx openssl xvidcore
16 faad2 jasper libmms libmodplug libsndfile mjpegtools neon"
17 BUILD_DEPENDS="gstreamer-dev gst-plugins-base-dev
18 faac-dev libpng-dev libvpx-dev openssl-dev xvidcore-dev jpeg-dev
19 faad2-dev jasper-dev libmms-dev libmodplug-dev libsndfile-dev libsdl-dev
20 mjpegtools-dev neon-dev schroedinger-dev expat-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 cd $src
26 ./configure \
27 --prefix=/usr \
28 --sysconfdir=/etc \
29 --localstatedir=/var \
30 --disable-static \
31 --disable-debug \
32 --enable-experimental \
33 --with-package-name="GStreamer Bad Plugins ($SERIES)" \
34 --with-package-origin="http://www.slitaz.org/" \
35 $CONFIGURE_ARGS &&
36 make $MAKEFLAGS &&
37 make install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/lib/gstreamer-$SERIES $fs/usr/share/locale
44 mv $install/usr/lib/*.so* $fs/usr/lib
45 mv $install/usr/lib/gstreamer-$SERIES/*.so* $fs/usr/lib/gstreamer-$SERIES
46 for locale in $LOCALES; do
47 mv $install/usr/share/locale/$locale $fs/usr/share/locale
48 done
49 }