2007-09-24 10:46:11 +10:00
|
|
|
# Description: Library for communicating with an icecast server.
|
2020-06-01 15:45:48 +00:00
|
|
|
# URL: https://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
|
2021-01-07 21:05:53 +11:00
|
|
|
version=2.4.5
|
2006-12-20 17:55:17 +11:00
|
|
|
release=1
|
2020-10-04 22:06:02 +11:00
|
|
|
source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|