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

mono: fix build by not enabling Spectre mitigation
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Jul 01 23:19:43 2018 +0300 (2018-07-01)
parents d3444352a0af
children d958fec46c9f
line source
1 # SliTaz package receipt v2.
3 PACKAGE="gst1-libav"
4 VERSION="1.10.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer 1.x libav/ffmpeg Plugin"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 WEB_SITE="http://gstreamer.freedesktop.org/"
11 TARBALL="gst-libav-$VERSION.tar.xz"
12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="gstreamer1-dev gst1-plugins-base-dev bzip2-dev \
15 coreutils-file-format coreutils-file-special glib-dev yasm gtk-doc"
17 COOKOPTS="skip-log-errors"
19 compile_rules() {
20 sed '/set ERROR_C/d' -i configure
22 ./configure \
23 --disable-static \
24 --with-libav-extra-configure="--enable-runtime-cpudetect" \
25 --with-package-name="GStreamer libav Plugin (1.0)" \
26 --with-package-origin="http://www.slitaz.org/" \
27 $CONFIGURE_ARGS &&
28 fix libtool &&
29 make $MAKEFLAGS &&
30 make DESTDIR=$install install
31 }
33 genpkg_rules() {
34 copy @std
35 DEPENDS="gst1-plugins-base bzip2 gst1-plugins-good"
36 }