From 868e4cbd62215412630b50ba8fa82a81d55edca0 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 10 Sep 2009 09:04:06 +0000 Subject: testing/mpd: new aport Music daemon that plays MP3, FLAC, and Ogg Vorbis files http://musicpd.org --- testing/mpd/APKBUILD | 48 +++++++++++++++++++++++++++++++++++++++++++++ testing/mpd/mpd.confd | 7 +++++++ testing/mpd/mpd.initd | 43 ++++++++++++++++++++++++++++++++++++++++ testing/mpd/mpd.pre-install | 4 ++++ 4 files changed, 102 insertions(+) create mode 100644 testing/mpd/APKBUILD create mode 100644 testing/mpd/mpd.confd create mode 100644 testing/mpd/mpd.initd create mode 100644 testing/mpd/mpd.pre-install (limited to 'testing') diff --git a/testing/mpd/APKBUILD b/testing/mpd/APKBUILD new file mode 100644 index 00000000..92e8c6db --- /dev/null +++ b/testing/mpd/APKBUILD @@ -0,0 +1,48 @@ +# Contributor: Sebastian Wicki +# Maintainer: Natanael Copa +pkgname=mpd +pkgver=0.15.2 +pkgrel=0 +pkgdesc="Music daemon that plays MP3, FLAC, and Ogg Vorbis files" +url="http://musicpd.org" +pkgusers="mpd" +pkggroups="mpd audio" +license="GPL2" +depends= +makedepends="pkgconfig lame-dev glib-dev curl-dev libao-dev libmad-dev flac-dev + libogg-dev faad2-dev libid3tag-dev libvorbis-dev alsa-lib-dev" +install="$pkgname.pre-install" +subpackages="$pkgname-doc" +source="http://downloads.sourceforge.net/project/musicpd/mpd/${pkgver}/mpd-${pkgver}.tar.bz2 + mpd.initd + mpd.confd + " + +build() { + cd "$srcdir"/$pkgname-$pkgver + + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make || return 1 + make DESTDIR="$pkgdir" install + + #provide a config that works by default + install -d "$pkgdir"/etc + sed -e 's:\#pid_file.*:pid_file\t\t/var/run/mpd/mpd.pid:' \ + -e 's:\#user.*:user\t\tmpd:' \ + -e 's:\#log_file.*:log_file\t\t/var/log/mpd:' \ + doc/mpdconf.example > "$pkgdir"/etc/mpd.conf + + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + install -m644 -D "$srcdir"/$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname + install -d -g audio -o mpd -m775 \ + "$pkgdir"/var/run/mpd \ + "$pkgdir"/var/log/mpd \ + "$pkgdir"/var/lib/mpd/playlists \ + "$pkgdir"/var/lib/mpd/music +} +md5sums="869779fdf592ac45d067c7dec228cb51 mpd-0.15.2.tar.bz2 +942017fbdc8bbaf5109e972a0a51b2c1 mpd.initd +dbd301041953a5cf9c2b9de8f23eb6bb mpd.confd" diff --git a/testing/mpd/mpd.confd b/testing/mpd/mpd.confd new file mode 100644 index 00000000..720306e8 --- /dev/null +++ b/testing/mpd/mpd.confd @@ -0,0 +1,7 @@ +# conf.d file for music player daemon + +# +# Specify daemon $OPTS here. +# + +OPTS="" diff --git a/testing/mpd/mpd.initd b/testing/mpd/mpd.initd new file mode 100644 index 00000000..7601ed4f --- /dev/null +++ b/testing/mpd/mpd.initd @@ -0,0 +1,43 @@ +#!/sbin/runscript + +# init.d file for music player daemon + +NAME=mpd +DAEMON=/usr/sbin/$NAME +CONF=/etc/mpd.conf + +depend() { + need localmount + use net netmount nfsmount esound pulseaudio +} + +checkconfig() { + [ -f "$CONF" ] && return 0 + eerror "configuration file $CONF is missing" + return 1 +} + +get_pidfile() { + pidfile=$(awk '$1 == "pid_file" { print $2 }' "$CONF") + pidfile=${pidfile:-/var/run/mpd/$NAME.pid} +} + +start() { + checkconf || return 1 + get_pidfile + ebegin "Starting ${NAME}" + start-stop-daemon --start --quiet \ + --pidfile $pidfile\ + --exec ${DAEMON} -- ${MPD_OPTS} + eend $? +} + +stop() { + get_pidfile + ebegin "Stopping ${NAME}" + start-stop-daemon --stop --quiet \ + --pidfile $pidfile \ + --exec ${DAEMON} + eend $? +} + diff --git a/testing/mpd/mpd.pre-install b/testing/mpd/mpd.pre-install new file mode 100644 index 00000000..4baabab1 --- /dev/null +++ b/testing/mpd/mpd.pre-install @@ -0,0 +1,4 @@ +#!/bin/sh + +adduser -h /var/lib/mpd -s /bin/false -G audio -D mpd 2>/dev/null || true + -- cgit v1.2.3