libdeflate, bump version (#9135)

This commit is contained in:
Schrijvers Luc
2023-08-02 18:39:23 +00:00
committed by GitHub
parent 98c22d7468
commit e1f89a0121

View File

@@ -7,17 +7,17 @@ The supported formats are:
- zlib (a.k.a. DEFLATE with a zlib wrapper)
- gzip (a.k.a. DEFLATE with a gzip wrapper)
libdeflate is heavily optimized. It is significantly faster than the zlib library, both for \
libdeflate is heavily optimized. It is significantly faster than the zlib library, both for \
compression and decompression, and especially on x86 processors.
In addition, libdeflate provides optional high compression modes that provide a better \
compression ratio than the zlib's level 9."
HOMEPAGE="https://github.com/ebiggers/libdeflate"
COPYRIGHT="2016-2022 Eric Biggers
COPYRIGHT="2016-2023 Eric Biggers
2017 Jun He"
LICENSE="MIT"
REVISION="2"
REVISION="1"
SOURCE_URI="$HOMEPAGE/archive/refs/tags/v$portVersion.tar.gz"
CHECKSUM_SHA256="58b95040df7383dc0413defb700d9893c194732474283cc4c8f144b00a68154b"
CHECKSUM_SHA256="225d982bcaf553221c76726358d2ea139bb34913180b20823c782cede060affd"
SOURCE_FILENAME="libdeflate-v$portVersion.tar.gz"
ARCHITECTURES="all !x86_gcc2"
@@ -51,6 +51,7 @@ BUILD_PREREQUIRES="
"
TEST_REQUIRES="
cmd:ctest
devel:libz$secondaryArchSuffix
"
@@ -58,7 +59,6 @@ BUILD()
{
cmake -Bbuild -S. -DCMAKE_BUILD_TYPE=Release \
$cmakeDirArgs \
-DLIBDEFLATE_BUILD_GZIP=OFF \
-DLIBDEFLATE_BUILD_STATIC_LIB=OFF
make -C build $jobArgs
}
@@ -77,6 +77,6 @@ INSTALL()
TEST()
{
make check
ctest --test-dir build
}