PKGBUILDs/community/mpv/PKGBUILD

71 lines
2.2 KiB
Bash
Raw Normal View History

2015-02-18 00:15:12 +00:00
# $Id$
2015-05-17 23:38:34 +00:00
# Maintainer: Christian Hesse <mail@eworm.de>
2016-02-27 15:12:31 +00:00
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2015-02-18 00:15:12 +00:00
# Contributor: Eivind Uggedal <eivind@uggedal.com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2016-02-27 19:18:29 +00:00
# - armv7/aarch64 needs to be built with fPIC
2015-02-18 00:15:12 +00:00
pkgname=mpv
2015-09-05 00:01:29 +00:00
epoch=1
2016-02-29 19:05:30 +00:00
pkgver=0.16.0
2016-04-03 20:41:52 +00:00
pkgrel=2
_waf_version=1.8.12
2015-02-18 00:15:12 +00:00
pkgdesc='Video player based on MPlayer/mplayer2'
arch=('i686' 'x86_64')
license=('GPL')
url='http://mpv.io'
depends=(
2015-05-17 23:38:34 +00:00
'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' 'enca' 'libxss'
2015-06-17 13:18:55 +00:00
'libxinerama' 'libxv' 'libxkbcommon' 'libva' 'wayland' 'libcaca'
2015-05-17 01:39:07 +00:00
'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua52' 'libdvdnav'
2016-02-27 15:12:31 +00:00
'libxrandr' 'jack' 'smbclient' 'rubberband'
2015-02-18 00:15:12 +00:00
)
2015-08-28 12:22:27 +00:00
makedepends=('mesa' 'python-docutils' 'ladspa' 'hardening-wrapper' 'git')
2015-02-18 00:15:12 +00:00
optdepends=('youtube-dl: for video-sharing websites playback')
options=('!emptydirs' '!buildflags')
install=mpv.install
2016-04-03 20:41:52 +00:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz"
"http://www.freehackers.org/~tnagy/release/waf-${_waf_version}"
'mpv-x11-do-not-set-set-_NET_WM_BYPASS_COMPOSITOR-by-default.patch::https://github.com/mpv-player/mpv/commit/2720e60ad00ff7cce1d80724bbd4b2b981748195.patch')
sha256sums=('fc3619de0ede16fbb023ac72589090e8e77fd9d9e03a81adc728105d50ef38ba'
'01bf2beab2106d1558800c8709bc2c8e496d3da4a2ca343fe091f22fca60c98b'
'eb44faeddb707d2cee26eb844876e4594277e46454393defe6f6608f9a4362e5')
2015-02-18 00:15:12 +00:00
prepare() {
2015-09-05 00:01:29 +00:00
cd ${pkgname}-${pkgver}
2015-05-19 12:34:45 +00:00
2016-04-03 20:41:52 +00:00
install -m755 "${srcdir}"/waf-${_waf_version} waf
# https://bugs.archlinux.org/task/48762
# https://github.com/mpv-player/mpv/issues/2997
# https://github.com/mpv-player/mpv/commit/2720e60ad00ff7cce1d80724bbd4b2b981748195
patch -Np1 < "${srcdir}"/mpv-x11-do-not-set-set-_NET_WM_BYPASS_COMPOSITOR-by-default.patch
2015-02-18 00:15:12 +00:00
./bootstrap.py
}
build() {
2015-09-05 00:01:29 +00:00
cd ${pkgname}-${pkgver}
2015-02-18 00:15:12 +00:00
2016-02-27 19:18:29 +00:00
[[ $CARCH == "armv7h" || $CARCH == "aarch64" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC"
2015-02-18 00:15:12 +00:00
./waf configure --prefix=/usr \
--confdir=/etc/mpv \
--enable-zsh-comp \
--enable-libmpv-shared \
2015-09-28 11:44:09 +00:00
--enable-cdda \
--enable-egl-x11
2015-02-18 00:15:12 +00:00
./waf build
}
package() {
2015-09-05 00:01:29 +00:00
cd ${pkgname}-${pkgver}
2015-02-18 00:15:12 +00:00
./waf install --destdir="$pkgdir"
install -m644 DOCS/{encoding.rst,tech-overview.txt} \
"$pkgdir"/usr/share/doc/mpv
}