mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-15 16:20:08 +02:00
57 lines
1.1 KiB
Bash
57 lines
1.1 KiB
Bash
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-2015 Kohei Yoshida et al."
|
|
LICENSE="MIT"
|
|
REVISION="2"
|
|
SOURCE_URI="https://kohei.us/files/mdds/src/mdds-$portVersion.tar.bz2"
|
|
CHECKSUM_SHA256="8a3767f0a60c53261b5ebbaa717381446813aef8cf28fe9d0ea1371123bbe3f1"
|
|
SOURCE_DIR="mdds-$portVersion"
|
|
|
|
ARCHITECTURES="all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="x86"
|
|
|
|
PROVIDES="
|
|
mdds2.1$secondaryArchSuffix = $portVersion compat >= 2.1
|
|
devel:mdds$secondaryArchSuffix = $portVersion compat >= 2.1
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:autoreconf
|
|
cmd:g++$secondaryArchSuffix
|
|
cmd:ld$secondaryArchSuffix
|
|
cmd:make
|
|
cmd:sed
|
|
"
|
|
|
|
TEST_REQUIRES="
|
|
devel:libboost_system$secondaryArchSuffix >= 1.83.0
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
autoreconf
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
TEST()
|
|
{
|
|
make check
|
|
}
|