New package: mpdscribble-0.22

This commit is contained in:
Georg Schabel 2014-12-11 15:30:19 +01:00
parent 0efc3f574d
commit ed3779cc9d
3 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,10 @@
[Unit]
Description=MPD Scribbler
Requires=mpd.service
After=mpd.service
[Service]
ExecStart=/usr/bin/mpdscribble --no-daemon
[Install]
WantedBy=default.target

View file

@ -0,0 +1,2 @@
#!/bin/sh
exec mpdscribble --no-daemon

View file

@ -0,0 +1,22 @@
# Template file for 'mpdscribble'
pkgname=mpdscribble
version=0.22
revision=1
short_desc="MPD audio scrobbler (e.g. last.fm)"
homepage="http://mpd.wikia.com/wiki/Client:Mpdscribble"
license="GPL-2"
maintainer="Georg Schabel <gescha@posteo.de>"
distfiles="http://www.musicpd.org/download/${pkgname}/${version}/${pkgname}-${version}.tar.bz2"
checksum=1cde2b5f8c70f0e3e6f059d01bf0b0f2eac2b29fbcd14b01a8a5103e603feb41
build_style=gnu-configure
hostmakedepends="pkg-config"
makedepends="libmpdclient-devel glib-devel libcurl-devel"
post_install() {
vsv mpdscribble
if [ "$build_option_systemd" ]; then
vinstall ${FILESDIR}/mpdscribble.service 644 usr/lib/systemd/system
fi
}