opt/ffmpeg/Pkgfile

37 lines
861 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Complete solution to record, convert and stream audio and video
# URL: http://ffmpeg.sf.net/
# Maintainer: sten, nick dot steeves at shaw dot ca
# Packager:
# Depends on: imlib2, lame, libsdl, libvorbis, libogg, libxvid, faac
name=ffmpeg
version=20050806
2006-02-23 16:26:10 +01:00
release=1
2006-08-31 09:02:58 +02:00
source=(http://www1.mplayerhq.hu/MPlayer/old_stuff/snapshots/FFmpeg/2005/FFmpeg-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
cd FFMpeg-$version
2006-02-23 16:26:10 +01:00
./configure \
--prefix=/usr \
--enable-mp3lame \
--enable-libogg \
--enable-ogg \
2006-02-23 16:26:10 +01:00
--enable-vorbis \
--enable-a52 \
--enable-xvid \
--enable-faad \
--enable-faadbin \
--enable-faac \
--enable-gpl \
--enable-shared \
--enable-pp \
--enable-shared-pp
2006-02-23 16:26:10 +01:00
make
( cd doc; make ffmpeg.1 ffserver.1 ffplay.1 )
make install installlib \
prefix=$PKG/usr \
bindir=$PKG/usr/bin \
mandir=$PKG/usr/man \
libdir=$PKG/usr/lib
}