Files

47 lines
1.7 KiB
Tcl
Raw Permalink Normal View History

2016-04-28 09:27:17 +00:00
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
2024-06-27 05:18:35 +08:00
PortGroup cmake 1.1
2016-04-28 09:27:17 +00:00
PortGroup compilers 1.0
2024-06-27 05:18:35 +08:00
2016-04-28 09:27:17 +00:00
compilers.choose cc cxx
name mlpack
2025-10-11 15:20:00 +09:00
version 4.6.2
revision 1
2016-04-28 09:27:17 +00:00
categories math devel science
license BSD
2018-04-02 14:25:00 -05:00
maintainers {takeshi @tenomoto} openmaintainer
2016-04-28 09:27:17 +00:00
description a scalable C++ machine learning library
long_description \
mlpack is an intuitive, fast, scalable C++ machine learning library, \
meant to be a machine learning analog to LAPACK. \
It aims to implement a wide array of machine learning methods and \
functions as a \"swiss army knife\" for machine learning researchers.
2021-03-07 14:34:54 +09:00
homepage https://mlpack.org
master_sites ${homepage}/files/
2016-04-28 09:27:17 +00:00
2025-10-11 15:20:00 +09:00
checksums rmd160 a4eb894da7d81e50b464c486bc2222088fef3c5f \
sha256 2fe772da383a935645ced07a07b51942ca178d38129df3bf685890bc3c1752cf \
size 8144737
2016-04-28 09:27:17 +00:00
2024-06-27 05:18:35 +08:00
depends_lib-append port:armadillo \
port:cereal \
2021-03-07 14:34:54 +09:00
port:ensmallen \
2016-04-28 09:27:17 +00:00
port:libxml2
2021-06-10 11:12:50 +01:00
compiler.cxx_standard 2011
2024-06-27 05:18:35 +08:00
configure.pre_args-replace \
-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=ON \
-DCMAKE_BUILD_WITH_INSTALL_RPATH:BOOL=OFF
2016-04-28 09:27:17 +00:00
configure.args-append \
2021-03-07 14:34:54 +09:00
-DBUILD_PYTHON_BINDINGS=OFF \
-DISABLE_DOWNLOADS=ON \
2016-04-28 09:27:17 +00:00
-DARMADILLO_INCLUDE_DIR=${prefix}/include \
2021-03-07 14:34:54 +09:00
-DARMADILLO_LIBRARY=${prefix}/lib/libarmadillo.dylib \
2021-07-21 13:59:13 +09:00
-DENSMALLEN_INCLUDE_DIR=${prefix}/include
2016-04-28 09:27:17 +00:00
build.target ""