PKGBUILDs/community/mpv/PKGBUILD

70 lines
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
2017-07-18 23:58:31 +00:00
pkgver=0.26.0
2017-07-20 12:33:03 +00:00
pkgrel=3
2016-04-03 20:41:52 +00:00
_waf_version=1.8.12
2016-04-11 21:41:35 +00:00
pkgdesc='a free, open source, and cross-platform media player'
2015-02-18 00:15:12 +00:00
arch=('i686' 'x86_64')
license=('GPL')
url='http://mpv.io'
depends=(
2017-01-08 17:00:45 +00:00
'ffmpeg' 'lcms2' 'libcdio-paranoia' 'libgl' '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'
2017-07-20 12:33:03 +00:00
'libxrandr' 'jack' 'rubberband' 'uchardet' 'libarchive'
2015-02-18 00:15:12 +00:00
)
2017-07-11 12:54:47 +00:00
makedepends=('mesa' 'python-docutils' 'ladspa')
2015-02-18 00:15:12 +00:00
optdepends=('youtube-dl: for video-sharing websites playback')
2017-07-11 18:25:51 +00:00
options=('!emptydirs')
2016-04-03 20:41:52 +00:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz"
2017-07-18 23:58:31 +00:00
'0001-opengl-backend-support-multiple-backends.patch'
2016-04-11 21:41:35 +00:00
"http://www.freehackers.org/~tnagy/release/waf-${_waf_version}")
2017-07-18 23:58:31 +00:00
sha256sums=('daf3ef358d5f260f2269f7caabce27f446c291457ec330077152127133b71b46'
'609e0530f1b0cdb910dcffb5f62bf55936540e24105ce1b2daf1bd6291a7d58a'
2016-04-11 21:41:35 +00:00
'01bf2beab2106d1558800c8709bc2c8e496d3da4a2ca343fe091f22fca60c98b')
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
2017-07-18 23:58:31 +00:00
# --opengl-backend: support multiple backends (#4384) (FS#53962)
patch -Np1 < "${srcdir}"/0001-opengl-backend-support-multiple-backends.patch
2016-04-03 20:41:52 +00:00
install -m755 "${srcdir}"/waf-${_waf_version} waf
2015-02-18 00:15:12 +00:00
}
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 \
2015-09-28 11:44:09 +00:00
--enable-cdda \
2017-07-19 23:41:35 +00:00
--enable-dvb \
2017-05-06 18:58:51 +00:00
--enable-dvdnav \
2016-04-14 18:02:50 +00:00
--enable-encoding \
2017-07-18 23:58:31 +00:00
--enable-libarchive \
2016-04-14 18:02:50 +00:00
--enable-libmpv-shared \
--enable-zsh-comp \
2015-09-28 11:44:09 +00:00
--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
}