52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
# Template file for 'zstd'
|
|
pkgname=zstd
|
|
version=1.5.5
|
|
revision=2
|
|
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="https://facebook.github.io/zstd/"
|
|
changelog="https://raw.githubusercontent.com/facebook/zstd/dev/CHANGELOG"
|
|
distfiles="https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz"
|
|
checksum=9c4396cc829cfae319a6e2615202e82aad41372073482fce286fac78646d3ee4
|
|
|
|
do_build() {
|
|
make ${makejobs} PREFIX=/usr lib-mt
|
|
make ${makejobs} PREFIX=/usr -C programs zstd-dll
|
|
make ${makejobs} PREFIX=/usr -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"
|
|
}
|
|
}
|