void-packages/srcpkgs/xxHash/template
2020-08-04 15:11:01 +02:00

34 lines
821 B
Bash

# Template file for 'xxHash'
pkgname=xxHash
version=0.8.0
revision=1
build_style=gnu-makefile
make_use_env=yes
make_check_target="test"
short_desc="Fast non-cryptographic hashing algorithm"
maintainer="John <me@johnnynator.dev>"
license="BSD-2-Clause, GPL-2.0-or-later"
homepage="https://cyan4973.github.io/xxHash/"
distfiles="https://github.com/Cyan4973/${pkgname}/archive/v${version}.tar.gz>xxhash-${version}.tar.gz"
checksum=7054c3ebd169c97b64a92d7b994ab63c70dd53a06974f1f630ab782c28db0f4f
post_install() {
vlicense LICENSE
}
libxxHash_package() {
short_desc+=" - library"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
xxHash-devel_package() {
short_desc+=" - development files"
depends="libxxHash>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
vmove "usr/lib/*.a"
}
}