mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@26c91a9
This commit is contained in:
9
package/pigz/Config.in.host
Normal file
9
package/pigz/Config.in.host
Normal file
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_HOST_PIGZ
|
||||
bool "host pigz"
|
||||
help
|
||||
pigz, which stands for parallel implementation of gzip, is a
|
||||
fully functional replacement for gzip that exploits multiple
|
||||
processors and multiple cores to the hilt when compressing
|
||||
data.
|
||||
|
||||
http://www.zlib.net/pigz/
|
||||
@@ -7,6 +7,7 @@
|
||||
PIGZ_VERSION = 2.4
|
||||
PIGZ_SITE = $(call github,madler,pigz,v$(PIGZ_VERSION))
|
||||
PIGZ_DEPENDENCIES = zlib
|
||||
HOST_PIGZ_DEPENDENCIES = host-zlib
|
||||
PIGZ_LICENSE = Zlib
|
||||
PIGZ_LICENSE_FILES = README
|
||||
|
||||
@@ -14,8 +15,17 @@ define PIGZ_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define HOST_PIGZ_BUILD_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D)
|
||||
endef
|
||||
|
||||
define PIGZ_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/pigz $(TARGET_DIR)/usr/bin/pigz
|
||||
endef
|
||||
|
||||
define HOST_PIGZ_INSTALL_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/pigz $(HOST_DIR)/bin/pigz
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
$(eval $(host-generic-package))
|
||||
|
||||
Reference in New Issue
Block a user