mdds2: add recipe

This commit is contained in:
Gerasim Troeglazov
2022-05-06 13:47:34 +10:00
parent c083076355
commit b084a5eb15

View File

@@ -0,0 +1,48 @@
SUMMARY="Multi-Dimensional Data Structure"
DESCRIPTION="mdds is a collection of multi-dimensional data structure \
and indexing algorithms."
HOMEPAGE="https://gitlab.com/mdds/mdds"
COPYRIGHT="2010-2021 Kohei Yoshida et al."
LICENSE="MIT"
REVISION="1"
SOURCE_URI="https://kohei.us/files/mdds/src/mdds-$portVersion.tar.bz2"
SOURCE_DIR="mdds-$portVersion"
CHECKSUM_SHA256="3ab33fce58e6acf9540cc1a52264be6863ef80f55ac287194cc98cda48e71fe6"
ARCHITECTURES="any"
PROVIDES="
mdds2 = $portVersion compat >= 2
devel:mdds = $portVersion compat >= 2
"
REQUIRES="
haiku
"
BUILD_REQUIRES="
haiku_devel
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:automake
cmd:g++
cmd:ld
cmd:make
"
BUILD()
{
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}
TEST()
{
make check
}