forked from ports/contrib
21 lines
423 B
Plaintext
21 lines
423 B
Plaintext
# Description: Library for communicating with an icecast server.
|
|
# URL: https://www.icecast.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libtheora openssl speex
|
|
|
|
name=libshout
|
|
version=2.4.5
|
|
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
|
|
}
|
|
|