void-packages/srcpkgs/zstd/template
2016-12-15 18:51:29 +00:00

30 lines
675 B
Bash

# Template file for 'zstd'
pkgname=zstd
version=1.1.2
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=980b8febb0118e22f6ed70d23b5b3e600995dbf7489c1f6d6122c1411cdda8d8
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"
}
}