wok view gst-plugins-base-1.0/receipt @ rev 16450

abiword, sylpheed: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 19 06:39:44 2014 +0000 (2014-04-19)
parents
children 4c9e6fbf8207
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-plugins-base-1.0"
4 VERSION="1.2.3"
5 SERIES="1.0"
6 CATEGORY="multimedia"
7 SHORT_DESC="GStreamer Base Plugins"
8 MAINTAINER="jozee@slitaz.org"
9 LICENSE="GPL2"
10 SOURCE="gst-plugins-base"
11 TARBALL="$SOURCE-$VERSION.tar.xz"
12 WEB_SITE="http://gstreamer.freedesktop.org/"
13 WGET_URL="${WEB_SITE}src/gst-plugins-base/$TARBALL"
14 LOCALES="da de es fr id it pt_BR ru zh_CN"
16 DEPENDS="gstreamer-1.0 pango alsa-lib libogg libtheora libtheora-enc \
17 libvorbis vorbis-tools udev xorg xorg-libXv xorg-libXvMC cdparanoia-III orc"
18 BUILD_DEPENDS="gstreamer-1.0-dev pango-dev alsa-lib-dev libogg-dev \
19 libtheora-dev libtheora-enc libvorbis-dev udev-dev xorg-libXv-dev \
20 xorg-libXvMC-dev cdparanoia-III-dev orc-dev util-linux-uuid-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --prefix=/usr \
27 --sysconfdir=/etc \
28 --localstatedir=/var \
29 --enable-experimental \
30 --disable-static \
31 --disable-debug \
32 --disable-gnome_vfs \
33 --enable-introspection=no \
34 --with-package-name="GStreamer Base Plugins ($SERIES)" \
35 --with-package-origin="http://www.slitaz.org/" \
36 $CONFIGURE_ARGS &&
37 make $MAKEFLAGS && make install
39 }
41 # Rules to gen a SliTaz package suitable for Tazpkg.
42 genpkg_rules()
43 {
44 mkdir -p $fs/usr/lib/gstreamer-$SERIES $fs/usr/share/locale
45 mv $install/usr/bin $fs/usr
46 mv $install/usr/lib/*.so* $fs/usr/lib
47 mv $install/usr/lib/gstreamer-$SERIES/*.so* $fs/usr/lib/gstreamer-$SERIES
48 for locale in $LOCALES; do
49 mv $install/usr/share/locale/$locale $fs/usr/share/locale
50 done
51 }