aboutsummaryrefslogtreecommitdiffstats
path: root/nonworking/alsa-tools/alsa-tools_0.9.8.oe
diff options
context:
space:
mode:
Diffstat (limited to 'nonworking/alsa-tools/alsa-tools_0.9.8.oe')
-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
+}