33 lines
835 B
Bash
33 lines
835 B
Bash
# Template file for 'zchunk'
|
|
pkgname=zchunk
|
|
version=1.1.4
|
|
revision=1
|
|
build_style=meson
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libcurl-devel libzstd-devel"
|
|
short_desc="Easy-to-delta, compressed file format"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/zchunk/zchunk"
|
|
distfiles="https://github.com/zchunk/zchunk/archive/${version}.tar.gz"
|
|
checksum=333aaeb6bf106589d8d813a03c1dc3ab10064ea7391181d6272159920ae3b7b4
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) makedepends+=" argp-standalone"
|
|
LDFLAGS="-largp"
|
|
;;
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
zchunk-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}-${version}_${revision} libressl-devel libzstd-devel"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|