contrib/libshout/Pkgfile

26 lines
575 B
Plaintext
Raw Normal View History

2007-09-24 02:46:11 +02:00
# Description: Library for communicating with an icecast server.
2006-12-20 07:55:17 +01:00
# URL: http://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
2020-01-12 07:42:06 +01:00
version=2.4.3
2006-12-20 07:55:17 +01:00
release=1
2020-01-12 07:42:06 +01:00
source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz
corrected-blocking-state.patch
icy-port-increment.patch)
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
2020-01-12 07:42:06 +01:00
patch -p1 -i $SRC/corrected-blocking-state.patch
patch -p1 -i $SRC/icy-port-increment.patch
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
}