22 lines
499 B
Plaintext
22 lines
499 B
Plaintext
# Description: General Purpose video player based on MPlayer and mplayer2
|
|
# URL: http://mpv.io/
|
|
# Maintainer: Svyatoslav Mishyn, juef at openmailbox dot org
|
|
# Depends on: ffmpeg docutils
|
|
# Optional: libquvi libdvdread libdvdnav
|
|
|
|
name=mpv
|
|
version=0.22.0
|
|
release=1
|
|
source=(https://github.com/$name-player/$name/archive/v$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./bootstrap.py
|
|
./waf configure --prefix=/usr
|
|
|
|
./waf build
|
|
./waf install --destdir=$PKG
|
|
rm -rf $PKG/usr/share/doc
|
|
}
|