mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
76 lines
2.6 KiB
Bash
76 lines
2.6 KiB
Bash
# $Id: PKGBUILD 66299 2012-02-23 13:44:43Z allan $
|
|
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Hugo Doria <hugo@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org
|
|
# - remove --enable-runtime-cpudetection from configure
|
|
|
|
plugrel=1
|
|
|
|
pkgname=mplayer-vaapi
|
|
pkgver=34578
|
|
pkgrel=4
|
|
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'
|
|
'a52dec' 'schroedinger' 'mpg123' 'libvpx' 'libpulse' 'fribidi' 'faad2'
|
|
'libva' 'libass' 'desktop-file-utils')
|
|
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
|
|
mplayer.desktop
|
|
mplayer.png)
|
|
options=('!buildflags' '!emptydirs')
|
|
install=mplayer-vaapi.install
|
|
sha256sums=('cc35a057c8a64d2cdec2dc0a037811ef0f91dd03cd3d07465c7272a08665a37d'
|
|
'9aa54571b37d15aec2c8e3ddf086753217efc3084ebf466335b2f28d819c74da'
|
|
'061739a8cc267748ad58f168034cc39785d949a5262772535e1b347c7842af48')
|
|
|
|
build() {
|
|
cd "$srcdir/mplayer-vaapi-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--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 \
|
|
--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"
|
|
|
|
make -j1 DESTDIR="$pkgdir" install-mplayer install-mplayer-man
|
|
install -Dm644 etc/{codecs.conf,input.conf,example.conf} "$pkgdir/etc/mplayer/"
|
|
install -dm755 "$pkgdir/usr/share/mplayer/"
|
|
ln -s /usr/share/fonts/TTF/DejaVuSans.ttf "$pkgdir/usr/share/mplayer/subfont.ttf"
|
|
rm -rf "$pkgdir/usr/share/mplayer/font"
|
|
# Desktop file (FS#14770)
|
|
install -Dm644 "$srcdir/mplayer.desktop" "$pkgdir/usr/share/applications/mplayer.desktop"
|
|
install -Dm644 "$srcdir/mplayer.png" "$pkgdir/usr/share/pixmaps/mplayer.png"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|