Add pth to usound's deps.
authorChris Larson <clarson@kergoth.com>
Wed, 24 Mar 2004 15:18:27 +0000 (15:18 +0000)
committerChris Larson <clarson@kergoth.com>
Wed, 24 Mar 2004 15:18:27 +0000 (15:18 +0000)
BKrev: 4061a6c3oYlmqfaiECoBH8TaUthSOw

usound/usound_0.2.0.oe

index e69de29..8c0f48a 100644 (file)
@@ -0,0 +1,28 @@
+DESCRIPTION = "The Useful Sound Daemon"
+SECTION = "libs"
+PRIORITY = "optional"
+MAINTAINER = "Michael Lauer <mickey@Vanille.de>"
+RDEPENDS = "libc6 pth"
+DEPENDS = "virtual/libc pth"
+
+SRC_URI = "http://mattcamp.paunix.org/usound/usound-${PV}.tar.gz"
+S = "${WORKDIR}/usound"
+
+do_compile() {
+       for dir in lib daemon
+       do
+               cd ${S}/$dir
+               oe_runmake
+       done
+}
+
+do_stage() {
+       install lib/libusound.a ${STAGING_LIBDIR}/
+        install -m 0644 lib/usound.h ${STAGING_INCDIR}/
+}
+
+do_install() {
+       install -d ${D}${bindir}
+       install -m 0755 daemon/usound ${D}${bindir}
+}
+