542891d670
The pigz website seems to only host the latest release tarball. Chances are that the 2.4 tarball will disappear when 2.5 comes out. Instead, use the Github tarballs provided by the developer. Comparison between the 2.4 / v2.4 tarballs shows that only the .gitignore file is added. Suggested-by: Alfredo Alvarez Fernandez <alfredo.alvarez_fernandez@nokia.com> Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
22 lines
542 B
Makefile
22 lines
542 B
Makefile
################################################################################
|
|
#
|
|
# pigz
|
|
#
|
|
################################################################################
|
|
|
|
PIGZ_VERSION = v2.4
|
|
PIGZ_SITE = $(call github,madler,pigz,$(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))
|