mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
22 lines
542 B
Makefile
22 lines
542 B
Makefile
################################################################################
|
|
#
|
|
# pigz
|
|
#
|
|
################################################################################
|
|
|
|
PIGZ_VERSION = 2.4
|
|
PIGZ_SITE = $(call github,madler,pigz,v$(PIGZ_VERSION))
|
|
PIGZ_DEPENDENCIES = zlib
|
|
PIGZ_LICENSE = Zlib
|
|
PIGZ_LICENSE_FILES = README
|
|
|
|
define PIGZ_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define PIGZ_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/pigz $(TARGET_DIR)/usr/bin/pigz
|
|
endef
|
|
|
|
$(eval $(generic-package))
|