blob: 2a82fb3fc8c0c9b88da63e3f78bc256a923aabf8 (
plain)
1 # Description: Library for communicating with an icecast server.
2 # URL: https://www.icecast.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libtheora openssl speex
5
6 name=libshout
7 version=2.4.6
8 release=1
9 source=(https://downloads.us.xiph.org/releases/$name/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15
16 make
17 make install DESTDIR=$PKG
18 rm -r $PKG/usr/share/doc
19 }
|