blob: 3ac7e79d0d393dd14f656c2d7d79467d8365217a (
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
|
#!/bin/sh
NAME="libshout"
DESC="Library for accessing a shoutcast/icecast server"
MAKEDEPS="speex libtheora libvorbis "
PKG_VER=2.4.6
SOURCE="http://downloads.xiph.org/releases/libshout/libshout-$PKG_VER.tar.gz"
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--with-openssl
make LDFLAGS+=-lspeex
}
check() {
make check
}
package() {
make DESTDIR="$PKG_DEST" install
}
|