20 lines
426 B
Plaintext
20 lines
426 B
Plaintext
# Description: Library for communicating with an icecast server.
|
|
# URL: https://www.icecast.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: libtheora openssl speex
|
|
|
|
name=libshout
|
|
version=2.4.6
|
|
release=1
|
|
source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -r $PKG/usr/share/doc
|
|
}
|