wok-next view gst0-plugins-bad/receipt @ rev 19865

slitaz-base-files: typo
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Sep 12 03:41:56 2017 +0300 (2017-09-12)
parents 0e8dadf052b9
children e6615350078d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gst0-plugins-bad"
4 VERSION="0.10.23"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer-0.10 Bad Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://gstreamer.freedesktop.org/"
11 TARBALL="gst-plugins-bad-$VERSION.tar.xz"
12 WGET_URL="https://gstreamer.freedesktop.org/src/gst-plugins-bad/$TARBALL"
14 BUILD_DEPENDS="gstreamer0-dev gst0-plugins-base-dev \
15 gettext \
16 faac-dev libpng16-dev libvpx-dev openssl-dev xvidcore-dev libjpeg-turbo-dev \
17 faad2-dev jasper-dev libmms-dev libmodplug-dev libsndfile-dev libsdl-dev \
18 expat-dev flac-dev mjpegtools-dev curl-dev neon-dev schroedinger-dev opus-dev \
19 zvbi-dev"
20 SPLIT="gst0-plugins-bad-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 ./configure \
26 --sysconfdir=/etc \
27 --localstatedir=/var \
28 --disable-static \
29 --disable-debug \
30 --enable-experimental \
31 --with-package-name="$SHORT_DESC" \
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 case $PACKAGE in
42 *-bad)
43 copy @std
44 DEPENDS="bzlib faac faad2 glib gst0-plugins-base gstreamer0 jasper \
45 libcrypto libcurl libffi liblzma libmms libmodplug libpng16 libsdl \
46 libsndfile libssl libvpx libxml2 mjpegtools opus orc pcre \
47 schroedinger xorg-libX11 xvidcore zlib zvbi"
48 ;;
49 *-dev)
50 copy @dev
51 DEPENDS="gst0-plugins-bad \
52 bzip2-dev curl-dev faac-dev faad2-dev flac-dev glib-dev \
53 gst0-plugins-base-dev gstreamer0-dev jasper-dev libffi-dev \
54 libmms-dev libmodplug-dev libogg-dev libpng16-dev libsdl-dev \
55 libsndfile-dev libvorbis-dev libvpx-dev libxml2-dev mjpegtools-dev \
56 openssl-dev opus-dev orc-dev pcre-dev schroedinger-dev \
57 util-linux-blkid-dev util-linux-mount-dev util-linux-uuid-dev \
58 xorg-libX11-dev xorg-libXau-dev xorg-libxcb-dev xorg-libXdmcp-dev \
59 xvidcore-dev xz-dev zlib-dev zvbi-dev"
60 ;;
61 esac
62 }