lz4: new package
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
921a9efa40
commit
b334c32ec6
@ -38,6 +38,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||
source "package/gzip/Config.in"
|
||||
endif
|
||||
source "package/infozip/Config.in"
|
||||
source "package/lz4/Config.in"
|
||||
source "package/lzip/Config.in"
|
||||
source "package/lzop/Config.in"
|
||||
source "package/xz/Config.in"
|
||||
|
14
package/lz4/Config.in
Normal file
14
package/lz4/Config.in
Normal file
@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_LZ4
|
||||
bool "lz4"
|
||||
depends on BR2_LARGEFILE
|
||||
help
|
||||
LZ4 is a very fast lossless compression algorithm, providing
|
||||
compression speed at 400 MB/s per core, scalable with multi-cores
|
||||
CPU. It also features an extremely fast decoder, with speed
|
||||
in multiple GB/s per core, typically reaching RAM speed limits
|
||||
on multi-core systems.
|
||||
|
||||
https://code.google.com/p/lz4/
|
||||
|
||||
comment "lz4 needs a toolchain w/ largefile"
|
||||
depends on !BR2_LARGEFILE
|
41
package/lz4/lz4.mk
Normal file
41
package/lz4/lz4.mk
Normal file
@ -0,0 +1,41 @@
|
||||
################################################################################
|
||||
#
|
||||
# lz4
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LZ4_VERSION = r117
|
||||
LZ4_SITE = $(call github,Cyan4973,lz4,$(LZ4_VERSION))
|
||||
LZ4_INSTALL_STAGING = YES
|
||||
LZ4_LICENSE = BSD-2c
|
||||
LZ4_LICENSE_FILES = LICENSE
|
||||
|
||||
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
||||
define LZ4_DISABLE_SHARED
|
||||
$(SED) '/SHARED/d' $(@D)/Makefile
|
||||
endef
|
||||
LZ4_POST_PATCH_HOOKS += LZ4_DISABLE_SHARED
|
||||
endif
|
||||
|
||||
define HOST_LZ4_BUILD_CMDS
|
||||
$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define HOST_LZ4_INSTALL_CMDS
|
||||
$(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) install DESTDIR=$(HOST_DIR)
|
||||
endef
|
||||
|
||||
define LZ4_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) liblz4
|
||||
endef
|
||||
|
||||
define LZ4_INSTALL_STAGING_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) install DESTDIR=$(STAGING_DIR)
|
||||
endef
|
||||
|
||||
define LZ4_INSTALL_TARGET_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) install DESTDIR=$(TARGET_DIR)
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
$(eval $(host-generic-package))
|
Loading…
Reference in New Issue
Block a user