contrib/icecast/Pkgfile

34 lines
802 B
Plaintext
Raw Normal View History

2006-11-19 22:26:53 +01:00
# Description: Program to stream audio to listeners.
# URL: http://www.icecast.org
2008-04-11 13:10:36 +02:00
# Maintainer: Lucas Hazel, lucas at die dot net dot au
2007-01-20 03:21:06 +01:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
2006-11-14 00:01:22 +01:00
#
2006-11-19 22:26:53 +01:00
# Depends on: libxslt, libvorbis
2006-11-14 00:01:22 +01:00
name=icecast
2008-07-11 14:26:50 +02:00
version=2.3.2
2006-11-14 00:01:22 +01:00
release=1
source=(http://downloads.us.xiph.org/releases/icecast/$name-$version.tar.gz \
2006-11-19 22:26:53 +01:00
icecast)
2006-11-14 00:01:22 +01:00
build() {
2006-11-19 22:26:53 +01:00
cd $name-$version
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
make && make DESTDIR=$PKG install
install -d \
$PKG/usr/share/icecast \
$PKG/var/log/icecast
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
touch $PKG/var/log/icecast/{access.log,error.log}
install -D -m755 $SRC/icecast $PKG/etc/rc.d/icecast
rm -fr $PKG/usr/share/{doc,icecast/doc}
2006-11-14 00:01:22 +01:00
2006-11-19 22:26:53 +01:00
chown -R root:root $PKG
2006-11-14 00:01:22 +01:00
}