# HG changeset patch # User Hans-G?nter Theisgen # Date 1659176437 -3600 # Node ID 0235fd8c4128c0b6b471080722b5c2c4f8e2a141 # Parent d00aec28667f2d6fbed7007ec7be72bc66bd743d updated udpxy (1.0.24.1 -> 1.0.25.1) diff -r d00aec28667f -r 0235fd8c4128 udpxy/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/udpxy/description.txt Sat Jul 30 11:20:37 2022 +0100 @@ -0,0 +1,3 @@ +Udpxy is a UDP-to-HTTP multicast traffic relay daemon: +It forwards UDP traffic from a given multicast subscription +to the requesting HTTP client. diff -r d00aec28667f -r 0235fd8c4128 udpxy/receipt --- a/udpxy/receipt Sat Jul 30 10:43:02 2022 +0100 +++ b/udpxy/receipt Sat Jul 30 11:20:37 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="udpxy" -VERSION="1.0.24.1" +VERSION="1.0.25.1" CATEGORY="network" SHORT_DESC="An UDP-to-HTTP multicast traffic relay daemon." MAINTAINER="pascal.bellard@slitaz.org" @@ -11,6 +11,9 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/pcherenkov/$PACKAGE/archive/${VERSION%.*.*}-${VERSION#*.*.}.tar.gz" +DEPENDS="gcc83-lib-base" +BUILD_DEPENDS="gcc83" + current_version() { wget -O - ${WGET_URL%/arch*}/tags 2>/dev/null | \ @@ -21,13 +24,16 @@ compile_rules() { cd chipmunk && - make && - make DESTDIR=$DESTDIR install + make \ + CC=gcc-83 \ + PREFIX=/usr && + make install \ + PREFIX=/usr \ + DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/local/bin $fs/usr + cook_copy_folders bin }