package/lz4: bump version to r131
systemd v228 requires lz4 >= 125 Signed-off-by: Gabe Evans <gabe@hashrabbit.co> [Thomas: only pass PREFIX=/usr at install time instead of using LZ4_MAKE_OPTS, and also pass it for the host installation.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
bfebfaec09
commit
8ad38a4fc2
2
package/lz4/lz4.hash
Normal file
2
package/lz4/lz4.hash
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# sha256 locally computed
|
||||||
|
sha256 9d4d00614d6b9dec3114b33d1224b6262b99ace24434c53487a0c8fd0b18cfed lz4-r131.tar.gz
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
LZ4_VERSION = r123
|
LZ4_VERSION = r131
|
||||||
LZ4_SITE = $(call github,Cyan4973,lz4,$(LZ4_VERSION))
|
LZ4_SITE = $(call github,Cyan4973,lz4,$(LZ4_VERSION))
|
||||||
LZ4_INSTALL_STAGING = YES
|
LZ4_INSTALL_STAGING = YES
|
||||||
LZ4_LICENSE = BSD-2c
|
LZ4_LICENSE = BSD-2c
|
||||||
@ -12,7 +12,7 @@ LZ4_LICENSE_FILES = LICENSE
|
|||||||
|
|
||||||
ifeq ($(BR2_STATIC_LIBS),y)
|
ifeq ($(BR2_STATIC_LIBS),y)
|
||||||
define LZ4_DISABLE_SHARED
|
define LZ4_DISABLE_SHARED
|
||||||
$(SED) '/SHARED/d' $(@D)/Makefile
|
$(SED) '/SHARED/d' $(@D)/lib/Makefile
|
||||||
endef
|
endef
|
||||||
LZ4_POST_PATCH_HOOKS += LZ4_DISABLE_SHARED
|
LZ4_POST_PATCH_HOOKS += LZ4_DISABLE_SHARED
|
||||||
endif
|
endif
|
||||||
@ -22,19 +22,22 @@ define HOST_LZ4_BUILD_CMDS
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define HOST_LZ4_INSTALL_CMDS
|
define HOST_LZ4_INSTALL_CMDS
|
||||||
$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) install DESTDIR=$(HOST_DIR)
|
$(MAKE) $(HOST_CONFIGURE_OPTS) DESTDIR=$(HOST_DIR) \
|
||||||
|
PREFIX=/usr install -C $(@D)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LZ4_BUILD_CMDS
|
define LZ4_BUILD_CMDS
|
||||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) liblz4
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)/lib
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LZ4_INSTALL_STAGING_CMDS
|
define LZ4_INSTALL_STAGING_CMDS
|
||||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) install DESTDIR=$(STAGING_DIR)
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) DESTDIR=$(STAGING_DIR) \
|
||||||
|
PREFIX=/usr install -C $(@D)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define LZ4_INSTALL_TARGET_CMDS
|
define LZ4_INSTALL_TARGET_CMDS
|
||||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) install DESTDIR=$(TARGET_DIR)
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) \
|
||||||
|
PREFIX=/usr install -C $(@D)/lib
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(eval $(generic-package))
|
$(eval $(generic-package))
|
||||||
|
Loading…
Reference in New Issue
Block a user