void-packages/srcpkgs/zstd/template
Érico Nogueira 8fb233bbb0 zstd: update to 1.5.0.
Since this releases enables multithreading the shared library, enable it
for the static library as well.
2021-05-16 15:22:25 -03:00

50 lines
1.2 KiB
Bash

# Template file for 'zstd'
pkgname=zstd
version=1.5.0
revision=1
bootstrap=yes
makedepends="zlib-devel liblzma-devel liblz4-devel"
checkdepends="gtest-devel tar"
short_desc="Fast real-time compression algorithm - CLI tool"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause, GPL-2.0-or-later"
homepage="http://www.zstd.net"
distfiles="https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz"
checksum=5194fbfa781fcf45b98c5e849651aa7b3b0a008c6b72d4a0db760f3002291e94
do_build() {
make ${makejobs} lib-mt
make ${makejobs} -C contrib/pzstd
}
do_check() {
# using the test target is too expensive
make ${makejobs} shortest
make -j 1 -C contrib/pzstd tests check
}
do_install() {
make PREFIX=/usr DESTDIR="${DESTDIR}" install
make -C contrib/pzstd PREFIX=/usr DESTDIR="${DESTDIR}" install
vlicense LICENSE
}
libzstd_package() {
short_desc="Fast real-time compression algorithm"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
libzstd-devel_package() {
replaces="zstd-devel<${version}_${revision}"
short_desc="Fast real-time compression algorithm - development files"
depends="libzstd-${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
vmove "usr/lib/*.a"
}
}