wok-undigest view gst-plugins-base-1.0/receipt @ rev 1229

updated libgio and libgio-dev (2.43.3 -> 2.62.4)
author Hans-G?nter Theisgen
date Wed Sep 09 14:00:14 2020 +0100 (2020-09-09)
parents
children
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 gobject-introspection-dev \
19 alsa-lib-dev libogg-dev libtheora-dev libtheora-enc libvorbis-dev udev-dev \
20 xorg-dev xorg-libXv-dev xorg-libXvMC-dev cdparanoia-III-dev orc-dev \
21 util-linux-uuid-dev"
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 ./configure \
27 --prefix=/usr \
28 --sysconfdir=/etc \
29 --localstatedir=/var \
30 --enable-experimental \
31 --disable-static \
32 --disable-debug \
33 --disable-gnome_vfs \
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 }