8dfd59d114
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
23 lines
622 B
Makefile
23 lines
622 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))
|