Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
comment "lzip needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
config BR2_PACKAGE_LZIP
bool "lzip"
depends on BR2_INSTALL_LIBSTDCPP
help
Lzip is a lossless data compressor with a user interface similar
to the one of gzip or bzip2.
Lzip is about as fast as gzip, compresses most files more than
bzip2, and is better than both from a data recovery perspective.
Lzip is a clean implementation of the LZMA algorithm.
http://savannah.nongnu.org/projects/lzip

View File

@@ -0,0 +1,2 @@
# Locally calculated after checking pgp signature
sha256 7cd3fcda68fc9900efcf7784313e3bdd1303fef1a0546db9723f5e5564dd05b6 lzip-1.15.tar.gz

View File

@@ -0,0 +1,40 @@
################################################################################
#
# lzip
#
################################################################################
LZIP_VERSION = 1.15
LZIP_SITE = http://download.savannah.gnu.org/releases/lzip
LZIP_LICENSE = GPLv3+
LZIP_LICENSE_FILES = COPYING
define LZIP_CONFIGURE_CMDS
(cd $(@D); ./configure --prefix=/usr \
$(TARGET_CONFIGURE_OPTS) )
endef
define HOST_LZIP_CONFIGURE_CMDS
(cd $(@D); ./configure --prefix=/usr \
$(HOST_CONFIGURE_OPTS) )
endef
define LZIP_BUILD_CMDS
$(MAKE) -C $(@D)
endef
define HOST_LZIP_BUILD_CMDS
$(MAKE) -C $(@D)
endef
define LZIP_INSTALL_TARGET_CMDS
$(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef
define HOST_LZIP_INSTALL_CMDS
$(MAKE) -C $(@D) DESTDIR=$(HOST_DIR) install
endef
# It's not autotools-based
$(eval $(generic-package))
$(eval $(host-generic-package))