wok view ffmpeg/receipt @ rev 4284

ffmpeg: version 0.5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 26 11:32:26 2009 +0200 (2009-09-26)
parents e8024c01fc47
children 18292a22a63a
line source
1 # SliTaz package receipt.
3 PACKAGE="ffmpeg"
4 VERSION="0.5"
5 CATEGORY="multimedia"
6 SHORT_DESC="Record, convert and stream audio and video."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://ffmpeg.org/"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WGET_URL="${WEB_SITE}releases/$TARBALL"
11 DEPENDS="bzlib freetype libsdl imlib2 alsa-lib jack-audio-connection-kit"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --enable-gpl \
18 --arch=i486 --cpu=i486 \
19 --enable-shared --enable-small \
20 --enable-postproc \
21 --disable-mmx --disable-mmx2 --disable-ssse3 &&
22 make &&
23 make DESTDIR=$PWD/../_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/lib/*so* $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr
32 }