wok view gst-plugins-ugly/receipt @ rev 14023

Up gst-plugins-ugly (0.10.19)
author Dominique Corbex <domcox@slitaz.org>
date Sun Feb 17 20:05:49 2013 +0100 (2013-02-17)
parents b7319995b37e
children 399035df8ea4
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-ugly"
4 VERSION="0.10.19"
5 SERIES="0.10"
6 CATEGORY="multimedia"
7 SHORT_DESC="GStreamer Ugly Plugins"
8 MAINTAINER="jozee@slitaz.org"
9 DEPENDS="gst-plugins-base \
10 lame libdvdread \
11 libcdio libmad libmpeg2 opencore-amr orc "
12 BUILD_DEPENDS="pkg-config gst-plugins-base-dev \
13 lame-dev libdvdread-dev \
14 libcdio-dev libmad-dev libmpeg2-dev orc-dev x264-dev"
15 SUGGESTED="x264"
16 TARBALL="$PACKAGE-$VERSION.tar.xz"
17 WEB_SITE="http://gstreamer.freedesktop.org/"
18 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
19 LOCALES="da de es fr id it pt_BR ru zh_CN"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./configure \
26 --prefix=/usr \
27 --sysconfdir=/etc \
28 --localstatedir=/var \
29 --disable-static \
30 --disable-debug \
31 --with-package-name="GStreamer Ugly Plugins ($SERIES)" \
32 --with-package-origin="http://www.slitaz.org/" \
33 $CONFIGURE_ARGS &&
34 make $MAKEFLAGS &&
35 make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/usr/lib/gstreamer-$SERIES $fs/usr/share/locale
42 mv $install/usr/lib/gstreamer-$SERIES/*.so* $fs/usr/lib/gstreamer-$SERIES
43 mv $install/usr/share/gstreamer-$SERIES $fs/usr/share
44 for locale in $LOCALES; do
45 mv $install/usr/share/locale/$locale $fs/usr/share/locale
46 done
47 }