wok view gst-ffmpeg/receipt @ rev 14940

Up: embryo-dev (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:15:45 2013 +0200 (2013-08-08)
parents 6ccb77b83ce4
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-ffmpeg"
4 VERSION="0.10.11"
5 SERIES="0.10"
6 CATEGORY="multimedia"
7 SHORT_DESC="GStreamer FFmpeg Plugins"
8 MAINTAINER="jozee@slitaz.org"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://gstreamer.freedesktop.org/"
11 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
13 DEPENDS="gst-plugins-base bzip2"
14 BUILD_DEPENDS="gstreamer-dev gst-plugins-base-dev bzip2-dev \
15 coreutils-file-format coreutils-file-special glib-dev yasm"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --disable-static \
24 --with-ffmpeg-extra-configure="--enable-runtime-cpudetect" \
25 --with-package-name="GStreamer FFMpeg Plugin ($SERIES)" \
26 --with-package-origin="http://www.slitaz.org/" \
27 $CONFIGURE_ARGS &&
28 make $MAKEFLAGS &&
29 make DESTDIR=$install install
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 $_pkg/usr/lib/gstreamer-$SERIES/*.so* $fs/usr/lib/gstreamer-$SERIES
37 }