updated on Thu Jan 19 12:17:07 UTC 2012
[aur-mirror.git] / ffmpeg-mt-git / PKGBUILD
blob09eeadfef8e9f2c8292000831cb8e6fb468aa508
1 # Mantainer: Samir Faci  <csgeek@esamir.com>   
2 # Contributor: Marius Dransfeld <marius.dransfeld@googlemail.com>
3 pkgname=ffmpeg-mt-git
4 pkgver=20110517
5 pkgrel=1
6 pkgdesc="Complete and free Internet live audio and video broadcasting solution for Linux/Unix (Multithread build, git version)"
7 arch=('i686' 'x86_64')
8 url="http://gitorious.org/ffmpeg/ffmpeg-mt"
9 license=('GPL')
10 depends=('lame' 'sdl' 'libvorbis'  'faac' 'xvidcore' 'zlib' 'x264-git' 'libtheora' 'libvpx>=0.9.1')
11 makedepends=('git')
12 provides=("ffmpeg=$pkgver,ffmpeg")
13 conflicts=('ffmpeg')
14 source=()
15 md5sums=()
17 _gitroot="git://gitorious.org/ffmpeg/ffmpeg-mt.git "
18 _gitname="ffmpeg-mt"
20 build() {
21   cd "$srcdir"
22   msg "Connecting to GIT server...."
24   if [ -d "$srcdir/$_gitname" ] ; then
25     cd $_gitname && git pull origin
26     msg "The local files are updated."
27   else
28     git clone $_gitroot
29   fi
31   msg "GIT checkout done or server timeout"
32   msg "Starting make..."
34   
35   cd "$srcdir/$_gitname"
36   #rm -rf libswscale/
37   git submodule init
38   git submodule update
39   ./configure \
40   --prefix=/usr \
41   --enable-gpl \
42   --enable-libmp3lame \
43   --enable-libfaac \
44   --enable-libvorbis \
45   --enable-libvpx \
46   --enable-libx264 \
47   --enable-libtheora \
48   --enable-postproc \
49   --enable-x11grab \
50   --arch=`uname -m` \
51   --enable-nonfree 
52   make 
53   make doc/ff{mpeg,play,server}.1 
55   make DESTDIR="$pkgdir" install 
56   make DESTDIR="$pkgdir" install-man