1
0
forked from ports/contrib
contrib/libshout/Pkgfile

23 lines
504 B
Plaintext
Raw Normal View History

2007-09-24 10:46:11 +10:00
# Description: Library for communicating with an icecast server.
2006-12-20 17:55:17 +11:00
# URL: http://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
2019-05-29 00:23:50 +10:00
version=2.4.2
2006-12-20 17:55:17 +11:00
release=1
2019-05-29 00:23:50 +10: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
sed -e 's/SSLeay_add_all_algorithms/OpenSSL_add_all_algorithms/g' -i src/tls.c
./configure --prefix=/usr
2007-09-24 10:46:11 +10:00
make
make install DESTDIR=$PKG
2006-12-20 17:55:17 +11:00
rm -r $PKG/usr/share/doc/
}