2007-09-24 10:46:11 +10:00
|
|
|
# Description: Library for communicating with an icecast server.
|
2006-12-20 17:55:17 +11:00
|
|
|
# URL: http://www.icecast.org/
|
2014-11-10 23:28:07 +11:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
2019-05-29 00:23:50 +10:00
|
|
|
# Depends on: libtheora openssl speex
|
2006-12-20 17:55:17 +11:00
|
|
|
|
|
|
|
name=libshout
|
2020-01-12 17:42:06 +11:00
|
|
|
version=2.4.3
|
2006-12-20 17:55:17 +11:00
|
|
|
release=1
|
2020-01-12 17:42:06 +11:00
|
|
|
source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz
|
|
|
|
corrected-blocking-state.patch
|
|
|
|
icy-port-increment.patch)
|
2006-12-20 17:55:17 +11:00
|
|
|
|
|
|
|
build() {
|
2012-02-07 19:51:41 +11:00
|
|
|
cd $name-$version
|
2006-12-20 17:55:17 +11:00
|
|
|
|
2020-01-12 17:42:06 +11:00
|
|
|
patch -p1 -i $SRC/corrected-blocking-state.patch
|
|
|
|
patch -p1 -i $SRC/icy-port-increment.patch
|
2019-05-29 00:23:50 +10:00
|
|
|
|
|
|
|
./configure --prefix=/usr
|
2007-09-24 10:46:11 +10:00
|
|
|
|
|
|
|
make
|
|
|
|
make install DESTDIR=$PKG
|
2020-01-12 17:42:06 +11:00
|
|
|
rm -r $PKG/usr/share/doc
|
2006-12-20 17:55:17 +11:00
|
|
|
}
|
|
|
|
|