wok view ffmpeg/receipt @ rev 4309

Add: aufs-utils (aufs2 utilities)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Sep 28 15:57:37 2009 +0200 (2009-09-28)
parents 2ec9b37c540b
children bfee99ebda41
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 zlib"
12 BUILD_DEPENDS="imlib2-dev freetype-dev libsdl-dev zlib-dev bzlib-dev"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr --enable-gpl \
19 --arch=i486 --cpu=i486 \
20 --enable-shared --enable-small \
21 --enable-postproc \
22 --disable-mmx --disable-mmx2 --disable-ssse3 &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*so* $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 }