wok annotate libshout/receipt @ rev 20700

updated afio (2.5.1 -> 2.5.2)
author Hans-G?nter Theisgen
date Tue Feb 05 17:01:36 2019 +0100 (2019-02-05)
parents 8d6f480bf664
children 5da5cfc71bb0
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/"
pascal@20669 11 WGET_URL="https://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