You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
38 lines
1.4 KiB
Tcl
38 lines
1.4 KiB
Tcl
# -*- 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
|
|
PortGroup cmake 1.1
|
|
PortGroup github 1.0
|
|
|
|
github.setup rballester tthresh 02df038c6eb9e8003201cb1bd82c678387e4b4ec
|
|
# Change github.tarball_from to 'releases' or 'archive' next update
|
|
github.tarball_from tarball
|
|
version 2023.07.12
|
|
categories graphics
|
|
license LGPL-3
|
|
maintainers nomaintainer
|
|
description C++ compressor for multidimensional grid data using the Tucker decomposition
|
|
long_description {*}${description}
|
|
checksums rmd160 5e803fca05f570b94941572a4cbea20b32f3d30c \
|
|
sha256 f61e4e7462b343d5f285842de0919cec2d93b908046dc8d0da8df5866de05d31 \
|
|
size 5347432
|
|
installs_libs no
|
|
cmake.out_of_source no
|
|
|
|
depends_lib-append path:share/pkgconfig/eigen3.pc:eigen3 \
|
|
port:zlib
|
|
|
|
compiler.cxx_standard 2011
|
|
compiler.openmp_version 3.0
|
|
|
|
configure.args-append \
|
|
-DEIGEN_INCLUDE_DIR=${prefix}/include/eigen3 \
|
|
-DZLIB_INCLUDE_DIRS=${prefix}/include
|
|
|
|
destroot {
|
|
copy ${worksrcpath}/${name} ${destroot}${prefix}/bin/
|
|
set docdir ${prefix}/share/doc/${name}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 0644 -W ${worksrcpath} README.md LICENSE ${destroot}${docdir}
|
|
}
|