void-packages/srcpkgs/zstd/template
2017-07-06 08:46:01 +00:00

30 lines
675 B
Bash

# Template file for 'zstd'
pkgname=zstd
version=1.3.0
revision=1
short_desc="Fast real-time compression algorithm"
maintainer="Michael Gehring <mg@ebfe.org>"
license="BSD"
homepage="http://www.zstd.net"
distfiles="https://github.com/facebook/zstd/archive/v${version}.tar.gz"
checksum=0fdba643b438b7cbce700dcc0e7b3e3da6d829088c63757a5984930e2f70b348
do_build() {
make
}
do_install() {
make PREFIX=/usr DESTDIR="${DESTDIR}" install
vlicense LICENSE
}
zstd-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}