# Maintainer: Philip Sequeira # Contributor: Rudolf Polzer # Contributor: Bartłomiej Piotrowski # Contributor: Eivind Uggedal # WARNING: The configure script will automatically enable any optional # features it finds support for on your system. If you want to avoid # linking against something you have installed, you'll have to disable # it in the configure below. The package() script will attempt to # update the dependencies based on dynamic libraries when packaging. pkgname=mpv-git _gitname=mpv pkgver=0.9.2_1355_gb144da6 pkgrel=1 pkgdesc='Video player based on MPlayer/mplayer2 (git version)' arch=('i686' 'x86_64') license=('GPL') url='http://mpv.io' _undetected_depends=('desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils') depends=('ffmpeg' "${_undetected_depends[@]}") optdepends=('youtube-dl: for --ytdl') makedepends=('git' 'python-docutils') provides=('mpv') conflicts=('mpv') options=('!emptydirs') install=mpv.install source=('git+https://github.com/mpv-player/mpv' 'find-deps.py') md5sums=('SKIP' 'ffb774b13decbefc62908dda0332046b') sha256sums=('SKIP' 'ce974e160347202e0dc63f6a7a5a89e52d2cc1db2d000c661fddb9dc1d007c02') pkgver() { cd "$srcdir/$_gitname" _curtag="$(git rev-list --tags --max-count=1)" _tagver="$(git describe --tags $_curtag | sed -e 's:^v::' -e 's:-:_:g')" _commits="$(git rev-list --count HEAD --since=$_tagver)" _sha="$(git rev-parse --short HEAD)" printf "%s_%s_g%s" $_tagver $_commits $_sha } prepare() { cd "$srcdir/$_gitname" ./bootstrap.py } build() { cd "$srcdir/$_gitname" CFLAGS="$CFLAGS -I/usr/include/samba-4.0" ./waf configure --prefix=/usr \ --confdir=/etc/mpv \ --enable-zsh-comp \ --enable-libmpv-shared ./waf build } package() { cd "$srcdir/$_gitname" ./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 # Update dependencies automatically based on dynamic libraries _detected_depends=($("$srcdir"/find-deps.py "$pkgdir"/usr/{bin/mpv,lib/libmpv.so})) echo 'Auto-detected dependencies:' echo "${_detected_depends[@]}" | fold -s -w 79 | sed 's/^/ /' depends=("${_detected_depends[@]}" "${_undetected_depends[@]}") }