PKGBUILDs/community/mpv/PKGBUILD

59 lines
1.5 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>
# 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>
# - armv7 needs to be built with fPIC
pkgname=mpv
2015-09-05 00:01:29 +00:00
epoch=1
2015-11-10 22:06:46 +00:00
pkgver=0.13.0
pkgrel=1
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'
2015-04-25 17:41:05 +00:00
'libguess' '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
2015-09-05 00:01:29 +00:00
source=("$pkgname-$pkgver.tar.gz::https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz")
2015-11-10 22:06:46 +00:00
sha256sums=('1372704fd8f5701ef7d60f347fd15fe536e23ef148279bf4a4415e72896912db')
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
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
[[ $CARCH == "armv7h" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC"
./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
}