mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
b008d8fdbe
Libaec provides fast lossless compression of 1 up to 32 bit wide signed or unsigned integers (samples). The library achieves best results for low entropy data as often encountered in space imaging instrument data or numerical model output from weather or climate simulations. While floating point representations are not directly supported, they can also be efficiently coded by grouping exponents and mantissa. Libaec implements extended Golomb-Rice coding as defined in the CCSDS recommended standard 121.0-B-3. The library covers the adaptive entropy coder and the preprocessor discussed in sections 1 to 5.2.6 of the standard.
25 lines
536 B
Makefile
25 lines
536 B
Makefile
COMMENT = fast lossless compression, implementing Golomb-Rice coding
|
|
|
|
VERSION = 1.1.4
|
|
DISTNAME = libaec-$(VERSION)
|
|
|
|
SHARED_LIBS += aec 0.0 # 1.4
|
|
SHARED_LIBS += sz 0.0 # 2.1
|
|
|
|
CATEGORIES = archivers
|
|
|
|
HOMEPAGE = https://gitlab.dkrz.de/k202009/libaec
|
|
|
|
MAINTAINER = Marco van Hulten <marco@hulten.org>
|
|
|
|
# BSD-2-Clause
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
SITES = https://github.com/MathisRosenhauer/libaec/releases/download/v$(VERSION)/
|
|
|
|
SEPARATE_BUILD = Yes
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
.include <bsd.port.mk>
|