wok-6.x annotate libshout/receipt @ rev 24454
gnustep-back: added dependency icu
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 16 07:53:02 2022 +0100 (2022-02-16) |
parents | be1594cae466 |
children | 544e47246b33 |
rev | line source |
---|---|
slaxemulator@8835 | 1 # SliTaz package receipt. |
slaxemulator@8835 | 2 |
slaxemulator@8835 | 3 PACKAGE="libshout" |
Hans-G?nter@23101 | 4 VERSION="2.4.3" |
slaxemulator@8835 | 5 CATEGORY="multimedia" |
Hans-G?nter@21297 | 6 SHORT_DESC="Library for accessing a shoutcast or icecast server." |
slaxemulator@8835 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15482 | 8 LICENSE="GPL2" |
pascal@21302 | 9 WEB_SITE="https://icecast.org/" |
Hans-G?nter@21297 | 10 |
slaxemulator@8835 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@20669 | 12 WGET_URL="https://downloads.xiph.org/releases/$PACKAGE/$TARBALL" |
slaxemulator@8835 | 13 |
Hans-G?nter@21297 | 14 DEPENDS="libtheora libvorbis speex" |
Hans-G?nter@21297 | 15 BUILD_DEPENDS="libogg-dev libtheora-dev libvorbis-dev speex-dev" |
pascal@15482 | 16 |
slaxemulator@8835 | 17 # Rules to configure and make the package. |
slaxemulator@8835 | 18 compile_rules() |
slaxemulator@8835 | 19 { |
Hans-G?nter@21297 | 20 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@21297 | 21 make LDFLAGS+=-lspeex && |
Hans-G?nter@21297 | 22 make install |
slaxemulator@8835 | 23 } |
slaxemulator@8835 | 24 |
slaxemulator@8835 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@8835 | 26 genpkg_rules() |
slaxemulator@8835 | 27 { |
slaxemulator@8835 | 28 mkdir -p $fs/usr/lib |
Hans-G?nter@23101 | 29 cp -a $install/usr/lib/*.so* $fs/usr/lib |
slaxemulator@8835 | 30 } |