From: Michael Lauer Date: Tue, 10 Jun 2008 23:53:37 +0000 (+0000) Subject: add pulseaudio-meta, a meta package that starts and configures the pulseaudio system X-Git-Tag: Release-2010-05/1~6780 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f0ff216b6a23ff99fe24f64a9ac1309aee0bfdd;p=openembedded.git add pulseaudio-meta, a meta package that starts and configures the pulseaudio system NOTE: you might want to override the session file for specific devices (e.g. non-alsa) or distribution needs --- diff --git a/packages/pulseaudio/pulseaudio-meta/.mtn2git_empty b/packages/pulseaudio/pulseaudio-meta/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/pulseaudio/pulseaudio-meta_0.9.10.bb b/packages/pulseaudio/pulseaudio-meta_0.9.10.bb new file mode 100644 index 0000000000..e99654a44b --- /dev/null +++ b/packages/pulseaudio/pulseaudio-meta_0.9.10.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "Pulseaudio Meta package w/ initscript et. al." +SECTION = "audio" +RDEPENDS = "\ + pulseaudio-server \ + pulseaudio-module-alsa-sink \ + pulseaudio-module-alsa-source \ + pulseaudio-module-cli \ + pulseaudio-module-esound-protocol-unix \ + pulseaudio-module-simple-protocol-tcp \ + pulseaudio-module-native-protocol-unix \ + pulseaudio-module-cli-protocol-unix \ + pulseaudio-module-suspend-on-idle \ + gst-plugin-pulse \ +" +PR = "r0" + +inherit update-rc.d + +INITSCRIPT_NAME = "pulseaudio" +INITSCRIPT_PARAMS = "defaults 35" + +SRC_URI = "file://pulseaudio \ + file://session" +S = "${WORKDIR}" + +do_install() { + install -d ${D}/${sysconfdir}/init.d + install -m 0755 ${WORKDIR}/pulseaudio ${D}/${sysconfdir}/init.d/ + install -d ${D}/${sysconfdir}/pulse + install -m 0755 ${WORKDIR}/session ${D}/${sysconfdir}/pulse/session +} + +PACKAGE_ARCH = "all"