mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
audio/icecast: Added to 12.2 repository
This commit is contained in:
parent
d1afb5c3c1
commit
a49491457f
5 changed files with 124 additions and 0 deletions
9
audio/icecast/README
Normal file
9
audio/icecast/README
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
Icecast is a streaming media server which currently supports Ogg
|
||||||
|
streaming including the vorbis and theora codecs. Also icecast can
|
||||||
|
handle other streams like MP3/AAC/NSV.
|
||||||
|
It can be used to create an Internet radio station or a privately
|
||||||
|
running jukebox and many things in between. It is very versatile in
|
||||||
|
that new formats can be added relatively easily and supports open
|
||||||
|
standards for communication and interaction.
|
||||||
|
|
||||||
|
Icecast has an optional requirement of speex.
|
19
audio/icecast/doinst.sh
Normal file
19
audio/icecast/doinst.sh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
config() {
|
||||||
|
NEW="$1"
|
||||||
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||||
|
# If there's no config file by that name, mv it over:
|
||||||
|
if [ ! -r $OLD ]; then
|
||||||
|
mv $NEW $OLD
|
||||||
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||||
|
# toss the redundant copy
|
||||||
|
rm $NEW
|
||||||
|
fi
|
||||||
|
# Otherwise, we leave the .new copy for the admin to consider...
|
||||||
|
}
|
||||||
|
|
||||||
|
config etc/icecast.xml.new
|
||||||
|
|
||||||
|
# Create log files if they don't exist already
|
||||||
|
[ ! -e var/log/icecast/access.log ] && touch var/log/icecast/access.log
|
||||||
|
[ ! -e var/log/icecast/error.log ] && touch var/log/icecast/error.log
|
||||||
|
|
69
audio/icecast/icecast.SlackBuild
Normal file
69
audio/icecast/icecast.SlackBuild
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for icecast
|
||||||
|
|
||||||
|
# Written by Rodney Cobb (rdc@ktabic.co.uk)
|
||||||
|
# Modified by Robby Workman <rworkman@slackbuilds.org>
|
||||||
|
|
||||||
|
PRGNAM=icecast
|
||||||
|
VERSION=${VERSION:-2.3.2}
|
||||||
|
ARCH=${ARCH:-i486}
|
||||||
|
BUILD=${BUILD:-1}
|
||||||
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
|
CWD=$(pwd)
|
||||||
|
TMP=${TMP:-/tmp/SBo}
|
||||||
|
PKG=$TMP/package-$PRGNAM
|
||||||
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
|
if [ "$ARCH" = "i486" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||||
|
elif [ "$ARCH" = "i686" ]; then
|
||||||
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||||
|
elif [ "$ARCH" = "x86_64" ]; then
|
||||||
|
SLKCFLAGS="-O2 -fPIC"
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -e # Exit on most errors
|
||||||
|
|
||||||
|
rm -rf $PKG
|
||||||
|
mkdir -p $TMP $PKG $OUTPUT
|
||||||
|
cd $TMP
|
||||||
|
rm -rf $PRGNAM-$VERSION
|
||||||
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||||
|
cd $PRGNAM-$VERSION
|
||||||
|
chown -R root:root .
|
||||||
|
find . \
|
||||||
|
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||||
|
-exec chmod 755 {} \; -o \
|
||||||
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
CXXFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--disable-static \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/man \
|
||||||
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
||||||
|
--build=$ARCH-slackware-linux
|
||||||
|
|
||||||
|
make docdir=/usr/doc/$PRGNAM-$VERSION
|
||||||
|
make install-strip docdir=/usr/doc/$PRGNAM-$VERSION DESTDIR=$PKG
|
||||||
|
|
||||||
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||||
|
|
||||||
|
# Let's not clobber existing configs
|
||||||
|
( cd $PKG/etc/ ; mv icecast.xml icecast.xml.new )
|
||||||
|
|
||||||
|
# Create log dir ; files will be created in doinst.sh if needed
|
||||||
|
mkdir -p $PKG/var/log/icecast
|
||||||
|
|
||||||
|
mkdir -p $PKG/install
|
||||||
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||||
|
|
||||||
|
cd $PKG
|
||||||
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
audio/icecast/icecast.info
Normal file
8
audio/icecast/icecast.info
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="icecast"
|
||||||
|
VERSION="2.3.2"
|
||||||
|
HOMEPAGE="http://www.icecast.org"
|
||||||
|
DOWNLOAD="http://downloads.xiph.org/releases/icecast/icecast-2.3.2.tar.gz"
|
||||||
|
MD5SUM="ff516b3ccd2bcc31e68f460cd316093f"
|
||||||
|
MAINTAINER="Rodney Cobb"
|
||||||
|
EMAIL="rdc@ktabic.co.uk"
|
||||||
|
APPROVED="rworkman"
|
19
audio/icecast/slack-desc
Normal file
19
audio/icecast/slack-desc
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# HOW TO EDIT THIS FILE:
|
||||||
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
||||||
|
# up the first '|' above the ':' following the base package icecast, and the '|'
|
||||||
|
# on the right side marks the last column you can put a character in. You must
|
||||||
|
# make exactly 11 lines for the formatting to be correct. It's also
|
||||||
|
# customary to leave one space after the ':'.
|
||||||
|
|
||||||
|
|-----handy-ruler------------------------------------------------------|
|
||||||
|
icecast: icecast (streaming media server)
|
||||||
|
icecast:
|
||||||
|
icecast: Icecast is a streaming media server which currently supports Ogg
|
||||||
|
icecast: streaming including the vorbis and theora codecs. Also icecast can
|
||||||
|
icecast: handle other streams like MP3/AAC/NSV.
|
||||||
|
icecast:
|
||||||
|
icecast:
|
||||||
|
icecast:
|
||||||
|
icecast:
|
||||||
|
icecast:
|
||||||
|
icecast:
|
Loading…
Reference in a new issue