wok view libshout/receipt @ rev 14060

Up: slitaz-tools-boxes (5.3)
author Dominique Corbex <domcox@slitaz.org>
date Wed Feb 20 10:51:55 2013 +0100 (2013-02-20)
parents c9fc4a566d1d
children 8d6f480bf664
line source
1 # SliTaz package receipt.
3 PACKAGE="libshout"
4 VERSION="2.2.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="Library for accessing a shoutcast/icecast server."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="libvorbis libtheora speex"
9 BUILD_DEPENDS="libvorbis-dev libtheora-dev speex-dev libogg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.icecast.org/"
12 WGET_URL="http://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure $CONFIGURE_ARGS && make LDFLAGS+=-lspeex && make install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
26 }