diff options
author | Maximilian Dietrich <dxm@openmailbox.org> | 2013-08-19 20:26:13 +0200 |
---|---|---|
committer | Maximilian Dietrich <dxm@openmailbox.org> | 2013-08-19 20:26:13 +0200 |
commit | a0ed96ba1a504e4000ee925de85876bbfb15f54f (patch) | |
tree | f9d96ba1462b2c44cb68df54e90b752bffbf57eb /mpv | |
parent | 016ec7640d169f2321e3bdf77d553069b8a23413 (diff) | |
download | contrib-a0ed96ba1a504e4000ee925de85876bbfb15f54f.tar.gz contrib-a0ed96ba1a504e4000ee925de85876bbfb15f54f.tar.xz |
mpv: initial commit
Diffstat (limited to 'mpv')
-rw-r--r-- | mpv/.footprint | 6 | ||||
-rw-r--r-- | mpv/.md5sum | 1 | ||||
-rw-r--r-- | mpv/Pkgfile | 22 |
3 files changed, 29 insertions, 0 deletions
diff --git a/mpv/.footprint b/mpv/.footprint new file mode 100644 index 000000000..134e5af59 --- /dev/null +++ b/mpv/.footprint @@ -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 diff --git a/mpv/.md5sum b/mpv/.md5sum new file mode 100644 index 000000000..a111cbd62 --- /dev/null +++ b/mpv/.md5sum @@ -0,0 +1 @@ +78cc945e7628d2f17f75bec18cc750e3 v0.1.2.tar.gz diff --git a/mpv/Pkgfile b/mpv/Pkgfile new file mode 100644 index 000000000..0affb7de7 --- /dev/null +++ b/mpv/Pkgfile @@ -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 +} |