Commit e4d89e7f authored by Jan Pedersen's avatar Jan Pedersen Committed by Peter Korsgaard
Browse files

infozip: new package



This commit adds a package for infozip, compression and file
packaging/archive utility.

[Peter: fix trailing spaces in help, long line]
Signed-off-by: default avatarJan Pedersen <jp@jp-embedded.com>
Acked-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent d17d1708
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ source "package/bzip2/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/gzip/Config.in"
endif
source "package/infozip/Config.in"
source "package/lzop/Config.in"
source "package/lzma/Config.in"
source "package/xz/Config.in"
+10 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_INFOZIP
	bool "infozip"
	help
	  Zip is a compression and file packaging/archive utility.
	  Although highly compatible both with PKWARE's PKZIP and
	  PKUNZIP utilities for MS-DOS and with Info-ZIP's own UnZip,
	  our primary objectives have been portability and
	  other-than-MSDOS functionality.

	  http://infozip.sourceforge.net/Zip.html
+21 −0
Original line number Diff line number Diff line
#############################################################
#
# 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))