Move all to deprecated folder.
This commit is contained in:
14
deprecated/firmware/buildroot/package/lzip/Config.in
Normal file
14
deprecated/firmware/buildroot/package/lzip/Config.in
Normal 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
|
||||
2
deprecated/firmware/buildroot/package/lzip/lzip.hash
Normal file
2
deprecated/firmware/buildroot/package/lzip/lzip.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 7cd3fcda68fc9900efcf7784313e3bdd1303fef1a0546db9723f5e5564dd05b6 lzip-1.15.tar.gz
|
||||
40
deprecated/firmware/buildroot/package/lzip/lzip.mk
Normal file
40
deprecated/firmware/buildroot/package/lzip/lzip.mk
Normal 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))
|
||||
Reference in New Issue
Block a user