blob: 6e1226b783e63a427e829ca014ba751da8cac7ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
MAKEDEPS="make xmlto"
DEPS="alsa-lib fftw libsamplerate"
DESC="Advanced Linux Sound Architecture - Utilities"
PKG_VER=1.2.6
SOURCE=https://www.alsa-project.org/files/pub/utils/alsa-utils-$PKG_VER.tar.bz2
build () {
./configure \
--disable-nls \
--disable-bat \
--disable-xmlto \
--with-curses=ncursesw &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|