Date: Sunday, March 30, 2014 @ 19:03:17 Author: bpiotrowski Revision: 108620
upgpkg: mpv 0.3.7-1 new upstream release Modified: mpv/trunk/PKGBUILD ----------+ PKGBUILD | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-03-30 16:13:07 UTC (rev 108619) +++ PKGBUILD 2014-03-30 17:03:17 UTC (rev 108620) @@ -3,8 +3,8 @@ # Contributor: Eivind Uggedal <[email protected]> pkgname=mpv -pkgver=0.3.6 -pkgrel=2 +pkgver=0.3.7 +pkgrel=1 pkgdesc='Video player based on MPlayer/mplayer2' arch=('i686' 'x86_64') license=('GPL') @@ -14,25 +14,30 @@ 'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav' ) -makedepends=('mesa' 'python-docutils' 'waf' 'ladspa') +makedepends=('mesa' 'python-docutils' 'ladspa') options=('!emptydirs' '!buildflags') install=mpv.install source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz) -md5sums=('11a8bb5f10056b7cc0dbedd38fe6e581') +md5sums=('0e1398c324775998b0e60fdb11b9e06d') +prepare() { + cd $pkgname-$pkgver + ./bootstrap.py +} + build() { cd $pkgname-$pkgver - waf configure --prefix=/usr \ + ./waf configure --prefix=/usr \ --confdir=/etc/mpv \ --enable-joystick - waf build + ./waf build } package() { cd $pkgname-$pkgver - waf install --destdir="$pkgdir" + ./waf install --destdir="$pkgdir" install -d "$pkgdir"/usr/share/doc/mpv/examples install -m644 etc/{input,example}.conf \
