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