2012-07-09 21:07:40 +00:00
|
|
|
# $Id: PKGBUILD 73508 2012-07-08 19:34:25Z foutrelis $
|
2012-03-22 03:25:08 +00:00
|
|
|
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
|
|
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
# Contributor: Hugo Doria <hugo@archlinux.org>
|
|
|
|
|
2012-07-09 21:07:40 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2012-03-22 03:25:08 +00:00
|
|
|
# - remove --enable-runtime-cpudetection from configure
|
|
|
|
|
|
|
|
pkgname=mplayer-vaapi
|
2012-07-09 21:07:40 +00:00
|
|
|
pkgver=35014
|
|
|
|
pkgrel=1
|
2012-03-22 03:25:08 +00:00
|
|
|
pkgdesc="A movie player, compiled with vaapi support"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://gitorious.org/vaapi/mplayer"
|
|
|
|
license=('GPL')
|
|
|
|
depends=('libxxf86dga' 'libxxf86vm' 'libmad' 'libcdio' 'libxinerama' 'sdl'
|
|
|
|
'lame' 'fontconfig' 'libtheora' 'xvidcore' 'libmng' 'libxss' 'mesa'
|
|
|
|
'smbclient' 'aalib' 'jack' 'libcaca' 'x264' 'faac' 'faad2'
|
|
|
|
'lirc-utils' 'ttf-dejavu' 'libxvmc' 'enca' 'opencore-amr' 'libdca'
|
2012-07-09 21:07:40 +00:00
|
|
|
'a52dec' 'schroedinger' 'mpg123' 'libvpx' 'libpulse' 'fribidi'
|
|
|
|
'libbluray' 'libva' 'libass' 'desktop-file-utils')
|
2012-03-22 03:25:08 +00:00
|
|
|
makedepends=('unzip' 'live-media' 'yasm' 'ladspa' 'git')
|
|
|
|
provides=("mplayer=$pkgver")
|
|
|
|
conflicts=('mplayer')
|
|
|
|
backup=('etc/mplayer/codecs.conf' 'etc/mplayer/input.conf')
|
|
|
|
source=(http://pkgbuild.com/~foutrelis/mplayer-vaapi-$pkgver.tar.xz
|
2012-07-09 21:07:40 +00:00
|
|
|
tweak-desktop-file.patch)
|
2012-03-22 03:25:08 +00:00
|
|
|
options=('!buildflags' '!emptydirs')
|
|
|
|
install=mplayer-vaapi.install
|
2012-07-09 21:07:40 +00:00
|
|
|
sha256sums=('db19a938e7de46aad567b6d7d8866ec6cb3919a29d60236609a83ebf4e1bb5f0'
|
|
|
|
'5a09fb462729a4e573568f9e8c1f57dbe7f69c0b68cfa4f6d70b3e52c450d93b')
|
2012-03-22 03:25:08 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/mplayer-vaapi-$pkgver"
|
|
|
|
|
2012-05-14 23:37:35 +00:00
|
|
|
patch -d etc -Np0 -i "$srcdir/tweak-desktop-file.patch"
|
|
|
|
|
2012-07-09 21:07:40 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2012-03-22 03:25:08 +00:00
|
|
|
--disable-gui \
|
|
|
|
--disable-arts \
|
|
|
|
--disable-liblzo \
|
|
|
|
--disable-speex \
|
|
|
|
--disable-cdparanoia \
|
|
|
|
--disable-openal \
|
|
|
|
--disable-libdv \
|
|
|
|
--disable-musepack \
|
|
|
|
--disable-esd \
|
|
|
|
--disable-mga \
|
|
|
|
--disable-ass-internal \
|
|
|
|
--enable-xvmc \
|
2012-07-09 21:07:40 +00:00
|
|
|
--enable-radio \
|
|
|
|
--enable-radio-capture \
|
2012-03-22 03:25:08 +00:00
|
|
|
--disable-vdpau \
|
|
|
|
--enable-vaapi \
|
|
|
|
--language=all \
|
|
|
|
--confdir=/etc/mplayer
|
|
|
|
|
|
|
|
[[ $CARCH == i686 ]] && sed -i 's|-march=i486|-march=i686|g' config.mak
|
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/mplayer-vaapi-$pkgver"
|
|
|
|
|
2012-07-09 21:07:40 +00:00
|
|
|
make DESTDIR="$pkgdir" install-mplayer install-mplayer-man
|
2012-03-22 03:25:08 +00:00
|
|
|
install -Dm644 etc/{codecs.conf,input.conf,example.conf} "$pkgdir/etc/mplayer/"
|
2012-05-14 23:37:35 +00:00
|
|
|
install -Dm644 etc/mplayer.desktop "$pkgdir/usr/share/applications/mplayer.desktop"
|
|
|
|
install -d "$pkgdir/usr/share/mplayer/"
|
2012-03-22 03:25:08 +00:00
|
|
|
ln -s /usr/share/fonts/TTF/DejaVuSans.ttf "$pkgdir/usr/share/mplayer/subfont.ttf"
|
|
|
|
rm -rf "$pkgdir/usr/share/mplayer/font"
|
2012-07-09 21:07:40 +00:00
|
|
|
install -Dm644 etc/mplayer256x256.png "$pkgdir/usr/share/pixmaps/mplayer.png"
|
2012-03-22 03:25:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|