wok view libshout/receipt @ rev 22636

updated dciutil (0.8.6 -> 0.9.8)
author Hans-G?nter Theisgen
date Mon Jan 13 16:25:30 2020 +0100 (2020-01-13)
parents 5da5cfc71bb0
children fa7a5e40934a
line source
1 # SliTaz package receipt.
3 PACKAGE="libshout"
4 VERSION="2.4.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Library for accessing a shoutcast or icecast server."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://icecast.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
14 DEPENDS="libtheora libvorbis speex"
15 BUILD_DEPENDS="libogg-dev libtheora-dev libvorbis-dev speex-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS &&
21 make LDFLAGS+=-lspeex &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }