Commit b334c32e authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

lz4: new package

parent 921a9efa
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"

package/lz4/Config.in

0 → 100644
+14 −0
Original line number Diff line number Diff line
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

package/lz4/lz4.mk

0 → 100644
+41 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))