blob: 48d96728340ee12bfbcfa63952eacfe2979f711d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
MAKEDEPS="make"
DEPS="alsa-lib musl-legacy-compat"
DESC="OSS compatibility library"
PKG_VER=1.1.8
SOURCE=https://www.alsa-project.org/files/pub/oss-lib/alsa-oss-$PKG_VER.tar.bz2
build () {
./configure --disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|