mpdris2: initial commit, version 0.8

This commit is contained in:
Tim Biermann 2019-12-29 11:40:19 +01:00
parent bcb523a6ae
commit c1a5a38e79
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 39 additions and 0 deletions

13
mpdris2/.footprint Normal file
View File

@ -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

5
mpdris2/.signature Normal file
View File

@ -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

21
mpdris2/Pkgfile Normal file
View File

@ -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}
}