summaryrefslogtreecommitdiff
path: root/nonworking/alsa-tools
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-05-29 17:11:04 +0000
committerChris Larson <clarson@kergoth.com>2004-05-29 17:11:04 +0000
commit087629f4afb009d0eceec99db1e2ae45c1cf507e (patch)
treeb33e81f2007fd813d64b11c6b513e6ebdc493e7b /nonworking/alsa-tools
parent57805d1d4e115d1901fa432d0dcb49807a38233b (diff)
Cleanup pass - remove remnant virtual/libc items from DEPENDS.
BKrev: 40b8c428TTv4Isw4YZOO0-X8vxwV2g
Diffstat (limited to 'nonworking/alsa-tools')
-rw-r--r--nonworking/alsa-tools/alsa-tools_0.9.8.oe50
1 files changed, 50 insertions, 0 deletions
diff --git a/nonworking/alsa-tools/alsa-tools_0.9.8.oe b/nonworking/alsa-tools/alsa-tools_0.9.8.oe
index e69de29bb2..d3acda0617 100644
--- a/nonworking/alsa-tools/alsa-tools_0.9.8.oe
+++ b/nonworking/alsa-tools/alsa-tools_0.9.8.oe
@@ -0,0 +1,50 @@
+DESCRIPTION="Alsa Tools"
+MAINTAINER="Lorn Potter <lpotter@trolltech.com>"
+LICENSE="GPL"
+DEPENDS=""
+
+SRC_URI="ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2"
+
+inherit autotools
+
+dirs = ac3dec \
+ as10k1 \
+ envy24control \
+ hdsploader \
+ hdspmixer \
+ mixartloader \
+ rmedigicontrol \
+ sb16_csp \
+ seq \
+ sscape_ctl \
+ us428control \
+ usx2yloader \
+ vxloader
+
+do_configure () {
+ for d in ${dirs}; do
+ (
+ S="$S/$d"
+ cd ${S}
+ oe_runconf
+ )
+ done
+}
+
+do_compile () {
+ for d in ${dirs}; do
+ (
+ cd ${S}/$d
+ oe_runmake
+ )
+ done
+}
+
+do_install () {
+ for d in ${dirs}; do
+ (
+ cd ${S}/$d
+ oe_runmake 'DESTDIR=${D}' install
+ )
+ done
+}