wok-6.x annotate gst-ffmpeg/receipt @ rev 16296
Up: xfce4-appfinder (4.11.0)
author | Alexander Medvedev <devl547@gmail.com> |
---|---|
date | Mon Apr 07 07:57:01 2014 +0000 (2014-04-07) |
parents | 36547f9def7c |
children | 1f94f879d67c |
rev | line source |
---|---|
jozee@2674 | 1 # SliTaz package receipt. |
jozee@2674 | 2 |
jozee@2674 | 3 PACKAGE="gst-ffmpeg" |
slaxemulator@7331 | 4 VERSION="0.10.11" |
domcox@14025 | 5 SERIES="0.10" |
jozee@2674 | 6 CATEGORY="multimedia" |
jozee@2674 | 7 SHORT_DESC="GStreamer FFmpeg Plugins" |
jozee@2674 | 8 MAINTAINER="jozee@slitaz.org" |
pascal@15000 | 9 LICENSE="GPL2" |
slaxemulator@7331 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
domcox@14025 | 11 WEB_SITE="http://gstreamer.freedesktop.org/" |
jozee@2674 | 12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL" |
jozee@2674 | 13 |
domcox@14479 | 14 DEPENDS="gst-plugins-base bzip2" |
domcox@14479 | 15 BUILD_DEPENDS="gstreamer-dev gst-plugins-base-dev bzip2-dev \ |
domcox@14479 | 16 coreutils-file-format coreutils-file-special glib-dev yasm" |
domcox@14479 | 17 |
jozee@2674 | 18 # Rules to configure and make the package. |
jozee@2674 | 19 compile_rules() |
jozee@2674 | 20 { |
jozee@2674 | 21 cd $src |
domcox@14025 | 22 ./configure \ |
domcox@14025 | 23 --prefix=/usr \ |
domcox@14025 | 24 --disable-static \ |
domcox@14025 | 25 --with-ffmpeg-extra-configure="--enable-runtime-cpudetect" \ |
domcox@14025 | 26 --with-package-name="GStreamer FFMpeg Plugin ($SERIES)" \ |
domcox@14025 | 27 --with-package-origin="http://www.slitaz.org/" \ |
pascal@15265 | 28 $CONFIGURE_ARGS && |
gokhlayeh@11573 | 29 make $MAKEFLAGS && |
domcox@14025 | 30 make DESTDIR=$install install |
jozee@2674 | 31 } |
jozee@2674 | 32 |
jozee@2674 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@2674 | 34 genpkg_rules() |
jozee@2674 | 35 { |
domcox@14025 | 36 mkdir -p $fs/usr/lib/gstreamer-$SERIES |
pascal@15000 | 37 cp -a $install/usr/lib/gstreamer-$SERIES/*.so* $fs/usr/lib/gstreamer-$SERIES |
jozee@2674 | 38 } |