PKGBUILDs/community/mpv/PKGBUILD

70 lines
2.1 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
2017-12-16 00:19:29 +00:00
# - disable retarded rpi detection
2015-02-18 00:15:12 +00:00
pkgname=mpv
2015-09-05 00:01:29 +00:00
epoch=1
2018-07-22 20:04:22 +00:00
pkgver=0.29.0
pkgrel=1
2017-12-15 20:02:34 +00:00
_waf_version=1.9.8
2016-04-11 21:41:35 +00:00
pkgdesc='a free, open source, and cross-platform media player'
2017-12-15 20:02:34 +00:00
arch=('x86_64')
# We link against libraries that are licensed GPLv3 explicitly, libsmbclient
# being one of these. So our package is GPLv3 only as well.
license=('GPL3')
url='https://mpv.io/'
2018-05-14 12:38:39 +00:00
depends=('desktop-file-utils' 'ffmpeg' 'hicolor-icon-theme' 'jack' 'lcms2'
'libarchive' 'libcaca' 'libcdio-paranoia' 'libdvdnav' 'libgl' 'libva'
'libxinerama' 'libxkbcommon' 'libxrandr' 'libxss' 'libxv' 'lua52'
'rubberband' 'smbclient' 'uchardet' 'vulkan-icd-loader' 'wayland'
'xdg-utils')
makedepends=('mesa' 'python-docutils' 'ladspa' 'wayland-protocols'
'vulkan-headers')
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-12-15 20:02:34 +00:00
"https://waf.io/waf-${_waf_version}")
2018-07-22 20:04:22 +00:00
sha256sums=('772af878cee5495dcd342788a6d120b90c5b1e677e225c7198f1e76506427319'
2017-12-15 20:02:34 +00:00
'167dc42bab6d5bd823b798af195420319cb5c9b571e00db7d83df2a0fe1f4dbf')
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
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 \
2017-12-15 20:02:34 +00:00
--enable-libsmbclient \
2018-05-14 12:38:39 +00:00
--enable-tv \
2017-07-18 23:58:31 +00:00
--enable-libarchive \
2016-04-14 18:02:50 +00:00
--enable-libmpv-shared \
--enable-zsh-comp \
2017-12-16 00:19:29 +00:00
--enable-egl-x11 \
--disable-rpi
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
}