package/rhash: bump to version 1.4.4

build-shared has been replaced by "build" with
851d459dbf

https://github.com/rhash/RHash/releases/tag/v1.4.4

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 2023-12-30 23:09:11 +01:00 committed by Thomas Petazzoni
parent 292bb525c7
commit f9b465c66c
2 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
# From https://sourceforge.net/projects/rhash/files/rhash/1.4.3/
sha1 6e698e6d5b13aeac55076d6a53dc4dab55f2114e rhash-1.4.3-src.tar.gz
# From https://sourceforge.net/projects/rhash/files/rhash/1.4.4/
sha1 feaee551aec9cc9a303a45aa8c864f97ece9ed2d rhash-1.4.4-src.tar.gz
# Locally calculated
sha256 1e40fa66966306920f043866cbe8612f4b939b033ba5e2708c3f41be257c8a3e rhash-1.4.3-src.tar.gz
sha256 8e7d1a8ccac0143c8fe9b68ebac67d485df119ea17a613f4038cda52f84ef52a rhash-1.4.4-src.tar.gz
sha256 953e55838353335148c90b5a38a4894292680b1d4c37228ffddddbf18ce54bf5 COPYING

View File

@ -4,7 +4,7 @@
#
################################################################################
RHASH_VERSION = 1.4.3
RHASH_VERSION = 1.4.4
RHASH_SOURCE = rhash-$(RHASH_VERSION)-src.tar.gz
RHASH_SITE = https://sourceforge.net/projects/rhash/files/rhash/$(RHASH_VERSION)
RHASH_LICENSE = 0BSD
@ -36,13 +36,13 @@ define RHASH_CONFIGURE_CMDS
endef
ifeq ($(BR2_SHARED_LIBS),y)
RHASH_BUILD_TARGETS = lib-shared build-shared
RHASH_BUILD_TARGETS = lib-shared build
RHASH_INSTALL_TARGETS = install-lib-shared install-so-link
else ifeq ($(BR2_STATIC_LIBS),y)
RHASH_BUILD_TARGETS = lib-static
RHASH_INSTALL_TARGETS = install-lib-static
else
RHASH_BUILD_TARGETS = lib-static lib-shared build-shared
RHASH_BUILD_TARGETS = lib-static lib-shared build
RHASH_INSTALL_TARGETS = install-lib-static install-lib-shared install-so-link
endif