wok view gst-ffmpeg/receipt @ rev 14309

Up: ethumb-dev (1.7.5)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:20:34 2013 +0200 (2013-04-07)
parents e13ab67213ba
children 28e9b74e64d1
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 DEPENDS="gst-plugins-base bzip2 orc"
10 BUILD_DEPENDS="pkg-config gstreamer-dev gst-plugins-base-dev bzip2-dev \
11 coreutils-file-format coreutils-file-special glib-dev orc-dev yasm \
12 libxml2-dev libffi"
13 TARBALL="$PACKAGE-$VERSION.tar.bz2"
14 WEB_SITE="http://gstreamer.freedesktop.org/"
15 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
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 }