summaryrefslogtreecommitdiff
path: root/repo/media/alsa-tools.xibuild
blob: a31327fa0e60268370bf50f7baa091191948d053 (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
#!/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 () {
    for tool in *; do
      case $tool in
        seq )
          tool_dir=seq/sbiload
        ;;
        * )
          tool_dir=$tool
        ;;
      esac

  pushd $tool_dir
    ./configure --prefix=/usr
    make
    make DESTDIR=$PKG_DEST install
  popd

done
unset tool tool_dir

}