wok diff icecast/receipt @ rev 24022
linld: basic iso9660 support
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Mar 14 19:55:20 2021 +0000 (2021-03-14) |
parents | a78610b2eb47 |
children | 544e47246b33 |
line diff
1.1 --- a/icecast/receipt Mon Jan 21 12:26:11 2019 +0100 1.2 +++ b/icecast/receipt Sun Mar 14 19:55:20 2021 +0000 1.3 @@ -1,28 +1,28 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="icecast" 1.7 -VERSION="2.3.3" 1.8 +VERSION="2.4.4" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="An opensource alternative to shoutcast that supports mp3, ogg (vorbis/theora) and aac streaming" 1.11 MAINTAINER="devl547@gmail.com" 1.12 LICENSE="GPL2" 1.13 +WEB_SITE="https://icecast.org/" 1.14 + 1.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WEB_SITE="http://www.icecast.org/" 1.17 WGET_URL="https://downloads.xiph.org/releases/$PACKAGE/$TARBALL" 1.18 1.19 -DEPENDS="libxslt libxml2 libogg libvorbis libtheora" 1.20 -BUILD_DEPENDS="libxslt-dev libxml2-dev libogg-dev libvorbis-dev libtheora-dev libogg libvorbis libtheora" 1.21 +DEPENDS="libogg libtheora libvorbis libxml2 libxslt" 1.22 +BUILD_DEPENDS="libogg-dev libtheora-dev libvorbis-dev libxml2-dev libxslt-dev" 1.23 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 - cd $src 1.28 - ./configure \ 1.29 - --prefix=/usr \ 1.30 - --sysconfdir=/etc \ 1.31 - --disable-yp \ 1.32 + ./configure \ 1.33 + --prefix=/usr \ 1.34 + --sysconfdir=/etc \ 1.35 + --disable-yp \ 1.36 $CONFIGURE_ARGS && 1.37 - make -j2 && 1.38 + make && 1.39 make DESTDIR=$DESTDIR install 1.40 } 1.41 1.42 @@ -30,7 +30,8 @@ 1.43 genpkg_rules() 1.44 { 1.45 mkdir -p $fs/usr/share 1.46 - cp -a $install/usr/bin $fs/usr/ 1.47 - cp -a $install/etc $fs/ 1.48 - cp -a $install/usr/share/icecast $fs/usr/share 1.49 + 1.50 + cp -a $install/usr/bin $fs/usr 1.51 + cp -a $install/etc $fs 1.52 + cp -a $install/usr/share/icecast $fs/usr/share 1.53 }