wok view icecast/receipt @ rev 20641

Add SSL support to retawq (needed by man to browse linux.die.net)
author Lucas Levrel <llevrel@yahoo.fr>
date Fri Jan 11 09:19:11 2019 +0100 (2019-01-11)
parents 9f8dc905b93e
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="icecast"
4 VERSION="2.3.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="An opensource alternative to shoutcast that supports mp3, ogg (vorbis/theora) and aac streaming"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.icecast.org/"
11 WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
13 DEPENDS="libxslt libxml2 libogg libvorbis libtheora"
14 BUILD_DEPENDS="libxslt-dev libxml2-dev libogg-dev libvorbis-dev libtheora-dev libogg libvorbis libtheora"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 --disable-yp \
24 $CONFIGURE_ARGS &&
25 make -j2 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $install/usr/bin $fs/usr/
34 cp -a $install/etc $fs/
35 cp -a $install/usr/share/icecast $fs/usr/share
36 }