wok annotate icecast/receipt @ rev 13249

usb-modeswitch: add datas
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 14 14:24:15 2012 +0200 (2012-08-14)
parents 02bbaa9d12ba
children 380ffe05937a
rev   line source
devl547@6038 1 # SliTaz package receipt.
devl547@6038 2
devl547@6038 3 PACKAGE="icecast"
slaxemulator@13085 4 VERSION="2.3.3"
devl547@6038 5 CATEGORY="multimedia"
devl547@6038 6 SHORT_DESC="An opensource alternative to shoutcast that supports mp3, ogg (vorbis/theora) and aac streaming"
devl547@6038 7 DEPENDS="libxslt libxml2 libogg libvorbis libtheora"
devl547@6038 8 BUILD_DEPENDS="libxslt-dev libxml2-dev libogg-dev libvorbis-dev libtheora-dev libogg libvorbis libtheora"
devl547@6038 9 MAINTAINER="devl547@gmail.com"
devl547@6038 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@6038 11 WEB_SITE="http://www.icecast.org/"
devl547@6038 12 WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
devl547@6038 13
devl547@6038 14 # Rules to configure and make the package.
devl547@6038 15 compile_rules()
devl547@6038 16 {
devl547@6038 17 cd $src
devl547@6038 18 ./configure \
devl547@6038 19 --prefix=/usr \
devl547@6038 20 --sysconfdir=/etc \
devl547@6038 21 --disable-yp \
devl547@6038 22 $CONFIGURE_ARGS &&
devl547@6038 23 make -j2 &&
slaxemulator@13085 24 make DESTDIR=$DESTDIR install
devl547@6038 25 }
devl547@6038 26
devl547@6038 27 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@6038 28 genpkg_rules()
devl547@6038 29 {
devl547@6038 30 mkdir -p $fs/usr/share
slaxemulator@13085 31 cp -a $install/usr/bin $fs/usr/
slaxemulator@13085 32 cp -a $install/etc $fs/
slaxemulator@13085 33 cp -a $install/usr/share/icecast $fs/usr/share
devl547@6038 34 }