e4d89e7f2d
This commit adds a package for infozip, compression and file packaging/archive utility. [Peter: fix trailing spaces in help, long line] Signed-off-by: Jan Pedersen <jp@jp-embedded.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
583 B
Makefile
22 lines
583 B
Makefile
#############################################################
|
|
#
|
|
# infozip
|
|
#
|
|
#############################################################
|
|
INFOZIP_VERSION = 30
|
|
INFOZIP_SOURCE = zip$(INFOZIP_VERSION).tgz
|
|
INFOZIP_SITE = ftp://ftp.info-zip.org/pub/infozip/src
|
|
INFOZIP_LICENSE = Info-ZIP
|
|
INFOZIP_LICENSE_FILES = LICENSE
|
|
|
|
define INFOZIP_BUILD_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile generic
|
|
endef
|
|
|
|
define INFOZIP_INSTALL_TARGET_CMDS
|
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) -f unix/Makefile install \
|
|
prefix=$(TARGET_DIR)/usr
|
|
endef
|
|
|
|
$(eval $(generic-package))
|