23 lines
504 B
Plaintext
23 lines
504 B
Plaintext
# Description: Library for communicating with an icecast server.
|
|
# URL: http://www.icecast.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libtheora openssl speex
|
|
|
|
name=libshout
|
|
version=2.4.2
|
|
release=1
|
|
source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
sed -e 's/SSLeay_add_all_algorithms/OpenSSL_add_all_algorithms/g' -i src/tls.c
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm -r $PKG/usr/share/doc/
|
|
}
|
|
|