blob: 5901538baa978a6b2df3483c0c18d460d5a486ed (
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
|
#!/bin/sh
MAKEDEPS="make"
DEPS="alsa-lib"
DESC="Advanced tools for certain sound cards"
PKG_VER=1.2.5
SOURCE=https://www.alsa-project.org/files/pub/tools/alsa-tools-$PKG_VER.tar.bz2
prepare () {
rm -rf qlo10k1 Makefile gitcompile
}
build () {
buildroot=$(pwd)
for tool in *; do
case $tool in
seq )
tool_dir=seq/sbiload
;;
* )
tool_dir=$tool
;;
esac
cd $tool_dir
./configure --prefix=/usr
make
make DESTDIR=$PKG_DEST install
cd $buildroot
done
unset tool tool_dir
}
|