wok view gst-ffmpeg/receipt @ rev 2921

Add: nicotine+ (soulseek network client)
author Claudinei Pereira <claudinei@slitaz.org>
date Wed May 06 23:26:44 2009 +0000 (2009-05-06)
parents 583bdd691510
children 2a691bddc52e
line source
1 # SliTaz package receipt.
3 PACKAGE="gst-ffmpeg"
4 VERSION="0.10.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="GStreamer FFmpeg Plugins"
7 MAINTAINER="jozee@slitaz.org"
8 DEPENDS="gstreamer gst-plugins-base ffmpeg glib"
9 BUILD_DEPENDS="pkg-config gst-plugins-base-dev liboil-dev gstreamer-dev libxml2-dev glib-dev ffmpeg-dev bzip2-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://gstreamer.freedesktop.org/"
12 WGET_URL="$WEB_SITE/src/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 # Add --with-system-ffmpeg from ./configure for compiling with shared FFmpeg.
16 # need atleast version 18330 for shared ffmpeg
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/gstreamer* $fs/usr/lib
31 }