70 lines
2.2 KiB
Bash
70 lines
2.2 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=zstd
|
|
pkgver=1.5.6
|
|
pkgrel=01
|
|
pkgdesc='Zstandard - not so Fast unreal-time FACEBOOK compression... - avoid as possible'
|
|
url='https://facebook.github.io/zstd/'
|
|
depends=(glibc gcc-libs zlib lz4)
|
|
makedepends=(cmake gtest ninja)
|
|
provides=(libzstd.so)
|
|
# options=(debug staticlibs) ## uncomment this to produce the debug pkg
|
|
#options=(staticlibs)
|
|
source=(https://github.com/facebook/zstd/releases/download/v${pkgver}/zstd-${pkgver}.tar.zst{,.sig})
|
|
|
|
prepare() {
|
|
cd ${pkgname}-${pkgver}
|
|
# avoid error on tests without static libs, we use LD_LIBRARY_PATH
|
|
sed '/build static library to build tests/d' -i build/cmake/CMakeLists.txt
|
|
sed 's/libzstd_static/libzstd_shared/g' -i build/cmake/tests/CMakeLists.txt
|
|
}
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
export CFLAGS+=' -ffat-lto-objects'
|
|
export CXXFLAGS+=' -ffat-lto-objects'
|
|
|
|
cmake -S build/cmake -B build -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=None \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DZSTD_ZLIB_SUPPORT=ON \
|
|
-DZSTD_LZMA_SUPPORT=ON \
|
|
-DZSTD_LZ4_SUPPORT=ON \
|
|
-DZSTD_BUILD_CONTRIB=ON \
|
|
-DZSTD_BUILD_STATIC=OFF \
|
|
-DZSTD_BUILD_TESTS=ON \
|
|
-DZSTD_PROGRAMS_LINK_SHARED=ON
|
|
cmake --build build
|
|
}
|
|
|
|
check() {
|
|
cd ${pkgname}-${pkgver}
|
|
LD_LIBRARY_PATH="$(pwd)/build/lib" \
|
|
ctest -VV --test-dir build
|
|
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
DESTDIR="${pkgdir}" cmake --install build
|
|
# ln -sf /usr/bin/zstd "${pkgdir}/usr/bin/zstdmt"
|
|
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=(BSD-3-Clause GPL-2.0-only)
|
|
|
|
validpgpkeys=(4EF4AC63455FC9F4545D9B7DEF8FE99528B52FFD)
|
|
|
|
sha256sums=(4aa8dd1c1115c0fd6b6b66c35c7f6ce7bd58cc1dfd3e4f175b45b39e84b14352 # zstd-1.5.6.tar.zst
|
|
577ed0a7caa1840ee45913fea56f69e418fb7aad0a9294b58e64c5a052b48efa) # zstd-1.5.6.tar.zst.sig
|
|
|
|
## c6c82264d5ee2981bb733a25894ef4bc81010c695e284f492b017c41c245ca9b zstd-1.5.6-01-x86_64.pkg.tar.lz
|
|
|