mpv: initial commit

This commit is contained in:
Maximilian Dietrich 2013-08-19 20:26:13 +02:00
parent 016ec7640d
commit a0ed96ba1a
3 changed files with 29 additions and 0 deletions

6
mpv/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/mpv
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/mpv.1.gz

1
mpv/.md5sum Normal file
View File

@ -0,0 +1 @@
78cc945e7628d2f17f75bec18cc750e3 v0.1.2.tar.gz

22
mpv/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# 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
}