22 lines
544 B
Plaintext
22 lines
544 B
Plaintext
# Description: source client for broadcasting in Ogg Vorbis format to an icecast2 server
|
|
# URL: http://www.icecast.org/ices.php
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: libshout
|
|
|
|
name=ices
|
|
version=2.0.1
|
|
release=1
|
|
source="http://downloads.us.xiph.org/releases/ices/$name-$version.tar.gz"
|
|
|
|
build()
|
|
{
|
|
cd $name-$version
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
make
|
|
make install DESTDIR=$PKG
|
|
rm $PKG/usr/share/$name/*.{html,css}
|
|
}
|