# $Id: PKGBUILD 110452 2014-04-30 10:26:37Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Eivind Uggedal pkgname=mpv pkgver=0.3.9 pkgrel=1 pkgdesc='Video player based on MPlayer/mplayer2' arch=('i686' 'x86_64') license=('GPL') url='http://mpv.io' depends=( 'portaudio' 'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi' 'libgl' 'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav' ) makedepends=('mesa' 'python-docutils' 'ladspa') options=('!emptydirs' '!buildflags') install=mpv.install source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz) md5sums=('afb42ae3b94bc968cfa9a690cde1df72') prepare() { cd $pkgname-$pkgver ./bootstrap.py } build() { cd $pkgname-$pkgver ./waf configure --prefix=/usr \ --confdir=/etc/mpv \ --enable-joystick ./waf build } package() { cd $pkgname-$pkgver ./waf install --destdir="$pkgdir" install -d "$pkgdir"/usr/share/doc/mpv/examples install -m644 etc/{input,example}.conf \ "$pkgdir"/usr/share/doc/mpv/examples install -m644 DOCS/{encoding.rst,tech-overview.txt} \ "$pkgdir"/usr/share/doc/mpv }