PKGBUILDs/community/mpv/PKGBUILD

66 lines
1.6 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-08-28 12:10:23 +00:00
_commit=f1778d1f
pkgver=41859.gf1778d1f
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-08-28 12:10:23 +00:00
source=("git://github.com/mpv-player/mpv.git#commit=${_commit}")
sha256sums=('SKIP')
pkgver() {
cd $pkgname
echo "$(git rev-list --count HEAD).g${_commit}"
}
2015-02-18 00:15:12 +00:00
prepare() {
2015-08-28 12:10:23 +00:00
cd $pkgname
2015-05-19 12:34:45 +00:00
2015-02-18 00:15:12 +00:00
./bootstrap.py
}
build() {
2015-08-28 12:10:23 +00:00
cd $pkgname
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 \
--enable-cdda
./waf build
}
package() {
2015-08-28 12:10:23 +00:00
cd $pkgname
2015-02-18 00:15:12 +00:00
./waf install --destdir="$pkgdir"
install -d "$pkgdir"/usr/share/doc/mpv/examples
install -m644 etc/{input,example}.conf \
"$pkgdir"/usr/share/doc/mpv/examples
install -m644 DOCS/{encoding.rst,tech-overview.txt} \
"$pkgdir"/usr/share/doc/mpv
}