wok-next view gst1-libav/receipt @ rev 19925

libftdi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 23:27:36 2017 +0200 (2017-10-14)
parents 2b519788fdc2
children d3444352a0af
line source
1 # SliTaz package receipt.
3 PACKAGE="gst1-libav"
4 VERSION="1.10.1"
5 SERIES="1.0"
6 CATEGORY="multimedia"
7 SHORT_DESC="GStreamer 1.x libav/ffmpeg Plugin"
8 MAINTAINER="psychomaniak@xakep.ru"
9 LICENSE="GPL2"
10 TARBALL="gst-libav-$VERSION.tar.xz"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
14 DEPENDS="gst1-plugins-base bzip2 gst1-plugins-good"
15 BUILD_DEPENDS="gstreamer1-dev gst1-plugins-base-dev bzip2-dev \
16 coreutils-file-format coreutils-file-special glib-dev yasm gtk-doc"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed '/set ERROR_C/d' -i configure
22 ./configure \
23 --prefix=/usr --disable-static \
24 --with-libav-extra-configure="--enable-runtime-cpudetect" \
25 --with-package-name="GStreamer libav Plugin ($SERIES)" \
26 --with-package-origin="http://www.slitaz.org/" \
27 $CONFIGURE_ARGS &&
28 make $MAKEFLAGS &&
29 make DESTDIR=$install install 2>/dev/null
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib/gstreamer-$SERIES
36 cp -a $install/usr/lib/gstreamer-$SERIES/*.so* $fs/usr/lib/gstreamer-$SERIES
37 }