summaryrefslogtreecommitdiff
path: root/ffmpeg/Pkgfile
blob: 5588cf342a66f691e12c8a083c0a2510534ddb6f (plain)
    1 # Description: Complete solution to record, convert and stream audio and video
    2 # URL: http://ffmpeg.mplayerhq.hu/
    3 # Maintainer: Matt Housh, jaeger at crux dot nu
    4 # Depends on: imlib2, lame, libsdl, libvorbis, libogg, libxvid, faac
    5 
    6 name=ffmpeg
    7 version=20050806
    8 release=1
    9 source=(http://www1.mplayerhq.hu/MPlayer/old_stuff/snapshots/FFmpeg/2005/FFmpeg-$version.tar.bz2)
   10 
   11 build() {
   12 	cd FFMpeg-$version
   13 	./configure \
   14 		--prefix=/usr \
   15 		--enable-mp3lame \
   16 		--enable-libogg \
   17 		--enable-ogg \
   18 		--enable-vorbis \
   19 		--enable-a52 \
   20 		--enable-xvid \
   21 		--enable-faad \
   22 		--enable-faadbin \
   23 		--enable-faac \
   24 		--enable-gpl \
   25 		--enable-shared \
   26 		--enable-pp \
   27 		--enable-shared-pp \
   28 		--extra-ldflags="-L/usr/X11R6/lib -L/usr/lib/X11 -lX11"
   29 	make
   30 	( cd doc; make ffmpeg.1 ffserver.1 ffplay.1 )
   31 	make  install installlib \
   32 		prefix=$PKG/usr \
   33 		bindir=$PKG/usr/bin \
   34 		mandir=$PKG/usr/man \
   35 		libdir=$PKG/usr/lib
   36 }

Generated by cgit