forked from ports/contrib
23 lines
533 B
Plaintext
23 lines
533 B
Plaintext
# Description: General Purpose video player based on MPlayer and mplayer2
|
|
# URL: http://mpv.io
|
|
# Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
|
|
# Depends on: libass ffmpeg docutils
|
|
# Nice to have: libquvi libdvdread
|
|
|
|
name=mpv
|
|
version=0.1.2
|
|
release=1
|
|
source=(https://github.com/$name-player/$name/archive/v$version.tar.gz)
|
|
|
|
build () {
|
|
cd "$name-$version"
|
|
|
|
# custom CFLAGS LDFLAGS might break the build
|
|
unset CFLAGS LDFLAGS
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
|
|
make
|
|
make DESTDIR=$PKG \
|
|
install
|
|
}
|