commit c1a5a38e791aa00f019c72c0050d38cded718ab2 Author: Tim Biermann <tbier@posteo.de> Date: Sun Dec 29 11:40:19 2019 +0100 mpdris2: initial commit, version 0.8 diff --git a/mpdris2/.footprint b/mpdris2/.footprint new file mode 100644 index 000000000..92c52f67c --- /dev/null +++ b/mpdris2/.footprint @@ -0,0 +1,13 @@ +drwxr-xr-x root/root etc/ +drwxr-xr-x root/root etc/xdg/ +drwxr-xr-x root/root etc/xdg/autostart/ +-rw-r--r-- root/root etc/xdg/autostart/mpdris2.desktop +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/mpDris2 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/applications/ +-rw-r--r-- root/root usr/share/applications/mpdris2.desktop +drwxr-xr-x root/root usr/share/dbus-1/ +drwxr-xr-x root/root usr/share/dbus-1/services/ +-rw-r--r-- root/root usr/share/dbus-1/services/org.mpris.MediaPlayer2.mpd.service diff --git a/mpdris2/.signature b/mpdris2/.signature new file mode 100644 index 000000000..c33cf403c --- /dev/null +++ b/mpdris2/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3+PYUhmk88w4/DDtYLQ0jeKaKRFaHMaMeXffUKrrS0efmE0cf+Ru69F7zxSilamtvUvE7f/SIHl4eCmNP0/rugI= +SHA256 (Pkgfile) = c99683639baddd88b7ea2cfe05145b9ea45d1f8358a6677a6839785e8b2c6ba0 +SHA256 (.footprint) = b3e674935c82fb20147614e47df5c78d125dd411597a661673bee97a50261b0b +SHA256 (mpdris2-0.8.tar.gz) = b6b15c1fdddf16a6d74485ad09f56ed353a317e149c37475c00a279186da4391 diff --git a/mpdris2/Pkgfile b/mpdris2/Pkgfile new file mode 100644 index 000000000..53ab1bff8 --- /dev/null +++ b/mpdris2/Pkgfile @@ -0,0 +1,21 @@ +# Description: MPRIS V2.1 support for mpd +# URL: https://github.com/eonpatapon/mpDris2 +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: python3-dbus python3-gobject python3-mpd2 libnotify python3-mutagen + +name=mpdris2 +version=0.8 +release=1 +source=(https://github.com/eonpatapon/mpDris2/archive/$version/$name-$version.tar.gz) + +build() { + cd mpDris2-$version + NOCONFIGURE=1 ./autogen.sh + PYTHON=python3 ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --disable-nls + make + make DESTDIR=$PKG install + rm -r $PKG/usr/{share/doc,lib} +}