wok-6.x rev 24438
updated coturn and coturn-dev (4.5.1.3 -> 4.5.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 13 17:48:17 2022 +0100 (2022-02-13) |
parents | 3b252eb4d26a |
children | bfabe25c21ff |
files | coturn-dev/receipt coturn/description.txt coturn/receipt |
line diff
1.1 --- a/coturn-dev/receipt Sun Feb 13 17:24:01 2022 +0100 1.2 +++ b/coturn-dev/receipt Sun Feb 13 17:48:17 2022 +0100 1.3 @@ -1,20 +1,19 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="coturn-dev" 1.7 -VERSION="4.5.1.3" 1.8 +VERSION="4.5.2" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Free open source implementation of TURN and STUN Server, development files" 1.11 +SHORT_DESC="Free open source implementation of TURN and STUN Server, development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="BSD" 1.14 WEB_SITE="https://github.com/coturn/coturn" 1.15 -WANTED="coturn" 1.16 1.17 DEPENDS="coturn" 1.18 +WANTED="coturn" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 - mkdir -p $fs/usr/lib 1.24 - cp -a $install/usr/include $fs/usr 1.25 - cp -a $install/usr/lib/*a $fs/usr/lib 1.26 + cook_copy_folders include 1.27 + cook_copy_files *.*a 1.28 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/coturn/description.txt Sun Feb 13 17:48:17 2022 +0100 2.3 @@ -0,0 +1,8 @@ 2.4 +The TURN Server is a VoIP media traffic NAT traversal server and gateway. 2.5 +It can be used as a general-purpose network traffic TURN server and 2.6 +gateway, too. 2.7 + 2.8 +On-line management interface (over telnet or over HTTPS) for the TURN 2.9 +server is available. 2.10 + 2.11 +The implementation also includes some extra experimental features.
3.1 --- a/coturn/receipt Sun Feb 13 17:24:01 2022 +0100 3.2 +++ b/coturn/receipt Sun Feb 13 17:48:17 2022 +0100 3.3 @@ -1,18 +1,18 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="coturn" 3.7 -VERSION="4.5.1.3" 3.8 +VERSION="4.5.2" 3.9 CATEGORY="network" 3.10 -SHORT_DESC="Free open source implementation of TURN and STUN Server" 3.11 +TAGS="stun turn" 3.12 +SHORT_DESC="Free open source implementation of TURN and STUN Server." 3.13 MAINTAINER="pascal.bellard@slitaz.org" 3.14 LICENSE="BSD" 3.15 +WEB_SITE="https://github.com/coturn/coturn" 3.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.17 -WEB_SITE="https://github.com/coturn/coturn" 3.18 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 3.19 -TAGS="stun turn" 3.20 3.21 -DEPENDS="libssl libsqlite zlib libevent" 3.22 -BUILD_DEPENDS="openssl-dev sqlite-dev zlib-dev libevent-dev" 3.23 +DEPENDS="libevent libsqlite libssl zlib" 3.24 +BUILD_DEPENDS="libevent-dev openssl-dev sqlite-dev zlib-dev" 3.25 3.26 current_version() 3.27 { 3.28 @@ -24,21 +24,24 @@ 3.29 compile_rules() 3.30 { 3.31 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lpthread" 3.32 - ./configure --prefix=/usr \ 3.33 - --sysconfdir=/etc \ 3.34 - --mandir=/usr/share/man \ 3.35 - $CONFIGURE_ARGS && 3.36 + 3.37 + ./configure \ 3.38 + --prefix=/usr \ 3.39 + --sysconfdir=/etc \ 3.40 + --mandir=/usr/share/man \ 3.41 + $CONFIGURE_ARGS && 3.42 make && 3.43 - make DESTDIR=$DESTDIR install 3.44 + make install DESTDIR=$DESTDIR 3.45 } 3.46 3.47 # Rules to gen a SliTaz package suitable for Tazpkg. 3.48 genpkg_rules() 3.49 { 3.50 mkdir -p $fs/usr/share 3.51 - cp -a $install/etc $fs 3.52 - cp -a $install/var $fs 3.53 - cp -a $install/usr/bin $fs/usr 3.54 - cp -a $install/usr/share/examples $fs/usr/share 3.55 - cp -a $install/usr/share/turnserver $fs/usr/share 3.56 + 3.57 + cp -a $install/etc $fs 3.58 + cp -a $install/var $fs 3.59 + cp -a $install/usr/bin $fs/usr 3.60 + cp -a $install/usr/share/examples $fs/usr/share 3.61 + cp -a $install/usr/share/turnserver $fs/usr/share 3.62 }