summaryrefslogtreecommitdiff
path: root/repo/media/alsa-oss.xibuild
blob: 3409c37029b904f0f459379d358d76f4683e7cdc (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"

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
}