diff options
author | Chris Larson <clarson@kergoth.com> | 2004-03-24 15:18:27 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-03-24 15:18:27 +0000 |
commit | 57b3e8874457ff41d9ad21312345e1e44473f6ee (patch) | |
tree | ad2a3591d714da943244c47d87f2eb4372b19c94 /usound/usound_0.2.0.oe | |
parent | d5d7143557e5b16fcfc79cc89cbf1937491975a4 (diff) |
Add pth to usound's deps.
BKrev: 4061a6c3oYlmqfaiECoBH8TaUthSOw
Diffstat (limited to 'usound/usound_0.2.0.oe')
-rw-r--r-- | usound/usound_0.2.0.oe | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/usound/usound_0.2.0.oe b/usound/usound_0.2.0.oe index e69de29bb2..8c0f48a43e 100644 --- a/usound/usound_0.2.0.oe +++ b/usound/usound_0.2.0.oe @@ -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} +} + |