22 lines
500 B
Plaintext
22 lines
500 B
Plaintext
|
# Description: library for communicating with an icecast server
|
||
|
# URL: http://www.icecast.org/
|
||
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Packager: Han Boetes, han at mijncomputer dot nl
|
||
|
# Depends on: libvorbis
|
||
|
|
||
|
name=libshout
|
||
|
version=2.2.2
|
||
|
release=1
|
||
|
source=(http://downloads.us.xiph.org/releases/libshout/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--disable-nls
|
||
|
make && make install DESTDIR=$PKG
|
||
|
rm -r $PKG/usr/share/doc/
|
||
|
}
|
||
|
|