blob: 985a5b8f81559b4e870b0e1e0871302d5c9f22a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#Contributor: Reiser <metal@pop3.ru>
pkgname=mplayer-vdpau-nogui
pkgver=29542
pkgrel=1
pkgdesc="Famous multimedia player, dev. version, without its GUI and support for nvidia VDPAU"
arch=('i686' 'x86_64')
url="http://www.mplayerhq.hu/"
license=('GPL')
depends=('ttf-dejavu' 'nvidia' 'opencore-amr' 'libdvdnav>=4.1.3' 'lame' 'xvidcore')
makedepends=('subversion')
conflicts=('mplayer')
provides=(mplayer=$pkgver)
source=('no_segfault_configure.diff')
md5sums=(ed962f7642ffcf2411ec6465fdc8c132)
_svntrunk=svn://svn.mplayerhq.hu/mplayer/trunk
_svnmod=mplayer-vdpau
build() {
cd $srcdir
svn co $_svntrunk $_svnmod
cp -R $_svnmod $_svnmod-build
cd $_svnmod-build
patch -p1 < ../no_segfault_configure.diff
./configure --prefix=/usr --confdir=/etc/mplayer --disable-gui \
--disable-runtime-cpudetection --enable-largefiles --enable-menu \
--disable-libdv --disable-aa --disable-liblzo --disable-speex \
--disable-fribidi --disable-arts --disable-esd --disable-smb --enable-dvdnav \
--disable-openal --disable-faad-internal --disable-jack --disable-directfb \
--disable-musepack --enable-libopencore_amrnb --enable-libopencore_amrwb \
--enable-vdpau --disable-libbs2b
make || return 1
make DESTDIR=$pkgdir install || return 1
install -m0644 etc/{codecs.conf,input.conf,example.conf} $pkgdir/etc/mplayer
install -d $pkgdir/usr/share/mplayer/
ln -s /usr/share/fonts/TTF/DejaVuSans.ttf $pkgdir/usr/share/mplayer/subfont.ttf
cd ../
rm -rf ./$_svnmod-build
}
|