aboutsummaryrefslogtreecommitdiffstats
path: root/nonworking/alsa-tools/alsa-tools_0.9.8.oe
blob: d3acda0617f9b77f1bf2053b3ef46180f508bd30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
}