package/udpxy: bump to version 1.0-25.1

- Switch site to get latest release
- Set ALL_CFLAGS to drop -Werror
- Update hash of README (changes not related to license)

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Fabrice Fontaine 2024-02-22 00:01:17 +01:00 committed by Thomas Petazzoni
parent 288bfd201b
commit 6c3a4107b3
3 changed files with 9 additions and 9 deletions

View File

@ -6,4 +6,4 @@ config BR2_PACKAGE_UDPXY
forwards UDP traffic from a given multicast subscription to
the requesting HTTP client.
http://www.udpxy.com/
https://github.com/pcherenkov/udpxy/

View File

@ -1,3 +1,3 @@
# Locally computed
sha256 6ce33b1d14a1aeab4bd2566aca112e41943df4d002a7678d9a715108e6b714bd udpxy.1.0.23-9-prod.tar.gz
sha256 60ead3913246c7cd930fe653c0053aba1af2cd9f82b266befdbbd6e0b8ecb750 README
sha256 a1a16e60895c6b2fd151321db47f5d5373843116f1b98ed9749e6c25a6c44497 udpxy-1.0-25.1.tar.gz
sha256 aac36b21c5afa931fd0e5d796814e29102a3b1f2742fb8694a26ef135aebf943 README

View File

@ -4,19 +4,19 @@
#
################################################################################
UDPXY_VERSION = 1.0.23-9-prod
UDPXY_SOURCE = udpxy.$(UDPXY_VERSION).tar.gz
UDPXY_SITE = http://www.udpxy.com/download/1_23
UDPXY_VERSION = 1.0-25.1
UDPXY_SITE = $(call github,pcherenkov,udpxy,$(UDPXY_VERSION))
UDPXY_LICENSE = GPL-3.0+
UDPXY_LICENSE_FILES = README
define UDPXY_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
ALL_CFLAGS="$(TARGET_CFLAGS)" -C $(@D)/chipmunk
endef
define UDPXY_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr \
-C $(@D) install
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/chipmunk DESTDIR=$(TARGET_DIR) \
PREFIX=/usr -C $(@D)/chipmunk install
endef
$(eval $(generic-package))