wok annotate libshout/receipt @ rev 18621

Up tazpanel (552)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 21 21:53:12 2015 +0100 (2015-11-21)
parents b7319995b37e
children a78610b2eb47
rev   line source
slaxemulator@8835 1 # SliTaz package receipt.
slaxemulator@8835 2
slaxemulator@8835 3 PACKAGE="libshout"
slaxemulator@8835 4 VERSION="2.2.2"
slaxemulator@8835 5 CATEGORY="multimedia"
slaxemulator@8835 6 SHORT_DESC="Library for accessing a shoutcast/icecast server."
slaxemulator@8835 7 MAINTAINER="slaxemulator@gmail.com"
pascal@15482 8 LICENSE="GPL2"
slaxemulator@8835 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@8835 10 WEB_SITE="http://www.icecast.org/"
slaxemulator@8835 11 WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
slaxemulator@8835 12
pascal@15482 13 DEPENDS="libvorbis libtheora speex"
pascal@15482 14 BUILD_DEPENDS="libvorbis-dev libtheora-dev speex-dev libogg-dev"
pascal@15482 15
slaxemulator@8835 16 # Rules to configure and make the package.
slaxemulator@8835 17 compile_rules()
slaxemulator@8835 18 {
slaxemulator@8835 19 cd $src
gokhlayeh@11573 20 ./configure $CONFIGURE_ARGS && make LDFLAGS+=-lspeex && make install
slaxemulator@8835 21 }
slaxemulator@8835 22
slaxemulator@8835 23 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@8835 24 genpkg_rules()
slaxemulator@8835 25 {
slaxemulator@8835 26 mkdir -p $fs/usr/lib
pascal@15482 27 cp -a $install/usr/lib/*.so* $fs/usr/lib
slaxemulator@8835 28 }
slaxemulator@8835 29