2022-10-30 11:44:33 +01:00
|
|
|
# Description: Heavily optimized library for DEFLATE/zlib/gzip compression and decompression
|
|
|
|
# URL: https://github.com/ebiggers/libdeflate
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on:
|
|
|
|
|
|
|
|
name=libdeflate
|
2022-12-05 15:15:49 +01:00
|
|
|
version=1.15
|
2022-10-30 11:44:33 +01:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/ebiggers/libdeflate/archive/v$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
2022-12-05 15:15:49 +01:00
|
|
|
cmake -S $name-$version -B build -G Ninja \
|
|
|
|
-D CMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-D CMAKE_INSTALL_LIBDIR=lib \
|
|
|
|
-D CMAKE_BUILD_TYPE=Release \
|
|
|
|
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
|
|
|
|
-Wno-dev
|
|
|
|
|
|
|
|
cmake --build build
|
|
|
|
DESTDIR=$PKG cmake --install build
|
2022-10-30 11:44:33 +01:00
|
|
|
}
|