New package: libvdt-0.4.3

This commit is contained in:
Ben Jargowsky 2022-01-11 12:38:46 -08:00 committed by Piotr
parent 0823da4eeb
commit 91bd3b4fa5
2 changed files with 29 additions and 0 deletions

1
srcpkgs/libvdt-devel Symbolic link
View File

@ -0,0 +1 @@
libvdt

28
srcpkgs/libvdt/template Normal file
View File

@ -0,0 +1,28 @@
# Template file for 'libvdt'
pkgname=libvdt
version=0.4.3
revision=1
wrksrc="vdt-${version}"
build_style=cmake
case "$XBPS_TARGET_MACHINE" in
aarch64*|arm*)
configure_args="-DSSE=OFF -DNEON=OFF"
make_cmd=make
export CMAKE_GENERATOR="Unix Makefiles"
;;
esac
hostmakedepends="python3"
short_desc="Collection of fast and inline implementations of mathematical functions"
maintainer="Ben Jargowsky <benjar63@gmail.com>"
license="LGPL-3.0-or-later"
homepage="https://github.com/dpiparo/vdt"
distfiles="https://github.com/dpiparo/vdt/archive/refs/tags/v${version}.tar.gz"
checksum=705674612ebb5c182b65a8f61f4d173eb7fe7cdeee2235b402541a492e08ace1
libvdt-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
}
}