From 1efb5ad43dec5539e2fa1c9bc0c4b2fecfdcfa32 Mon Sep 17 00:00:00 2001 From: "Ernesto L. Williams Jr" Date: Thu, 1 Jan 2015 12:38:00 -0800 Subject: [PATCH] szip: new package [Thomas: - Add hash file. - Rewrap Config.in help text and remove trailing whitespace. - Remove unneeded empty new line at the end of the .mk file.] Signed-off-by: Ernesto L. Williams Jr Signed-off-by: Thomas Petazzoni --- package/Config.in | 1 + package/szip/Config.in | 16 ++++++++++++++++ package/szip/szip.hash | 2 ++ package/szip/szip.mk | 13 +++++++++++++ 4 files changed, 32 insertions(+) create mode 100644 package/szip/Config.in create mode 100644 package/szip/szip.hash create mode 100644 package/szip/szip.mk diff --git a/package/Config.in b/package/Config.in index b5a700eb7c..2def872072 100644 --- a/package/Config.in +++ b/package/Config.in @@ -598,6 +598,7 @@ menu "Compression and decompression" source "package/libarchive/Config.in" source "package/lzo/Config.in" source "package/snappy/Config.in" + source "package/szip/Config.in" source "package/zlib/Config.in" endmenu diff --git a/package/szip/Config.in b/package/szip/Config.in new file mode 100644 index 0000000000..0c5d9b0dc6 --- /dev/null +++ b/package/szip/Config.in @@ -0,0 +1,16 @@ +config BR2_PACKAGE_SZIP + bool "szip" + help + Szip is an implementation of the extended-Rice lossless + compression algorithm. + + The Consultative Committee on Space Data Systems (CCSDS) has + adopted the extended-Rice algorithm for international + standards for space applications[1,6,7]. Szip is reported to + provide fast and effective compression, specifically for the + EOS data generated by the NASA Earth Observatory System + (EOS)[1]. It was originally developed at University of New + Mexico (UNM) and integrated with HDF4 by UNM researchers and + developers. + + http://www.hdfgroup.org/doc_resource/SZIP diff --git a/package/szip/szip.hash b/package/szip/szip.hash new file mode 100644 index 0000000000..c6caf36481 --- /dev/null +++ b/package/szip/szip.hash @@ -0,0 +1,2 @@ +# Locally computed +sha256 a816d95d5662e8279625abdbea7d0e62157d7d1f028020b1075500bf483ed5ef szip-2.1.tar.gz diff --git a/package/szip/szip.mk b/package/szip/szip.mk new file mode 100644 index 0000000000..f3a47581bf --- /dev/null +++ b/package/szip/szip.mk @@ -0,0 +1,13 @@ +################################################################################ +# +# szip +# +################################################################################ + +SZIP_VERSION = 2.1 +SZIP_SITE = http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src +SZIP_LICENSE = szip license +SZIP_LICENSE_FILES = COPYING +SZIP_INSTALL_STAGING = YES + +$(eval $(autotools-package)) -- 2.30.2