void-packages/srcpkgs/zstd/template
2017-05-05 10:53:22 +00:00

30 lines
675 B
Bash

# Template file for 'zstd'
pkgname=zstd
version=1.2.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=4a7e4593a3638276ca7f2a09dc4f38e674d8317bbea51626393ca73fc047cbfb
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"
}
}