You've already forked macports-ports
mirror of
https://github.com/encounter/macports-ports.git
synced 2026-03-30 11:29:27 -07:00
53 lines
2.3 KiB
Tcl
53 lines
2.3 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 python 1.0
|
|
|
|
name py-MDAnalysis
|
|
version 1.0.0
|
|
revision 0
|
|
categories-append science
|
|
platforms darwin
|
|
license GPL-2+
|
|
|
|
python.versions 27 36 37 38
|
|
|
|
maintainers {gmail.com:giovanni.bussi @GiovanniBussi} openmaintainer
|
|
|
|
description An object-oriented toolkit to analyze molecular dynamics trajectories generated by CHARMM, Gromacs, NAMD, LAMMPS, or Amber.
|
|
long_description ${description} \
|
|
It also reads other formats (e.g. PDB files and XYZ format trajectories. \
|
|
It can write most of the coordinate formats, too, together with atom selections for use \
|
|
in Gromacs, CHARMM, VMD and PyMOL.
|
|
|
|
homepage https://www.mdanalysis.org/
|
|
master_sites pypi:[string index ${python.rootname} 0]/${python.rootname}
|
|
|
|
distname ${python.rootname}-${version}
|
|
|
|
checksums rmd160 6ac6c5ad4ad83ff1227ec596cf47de76587d4478 \
|
|
sha256 f45a024aca45e390ff1c45ca90beb2180b78881be377e2a1aa9cd6c109bcfa81 \
|
|
size 19552874
|
|
|
|
patchfiles patch-unistd.diff
|
|
|
|
if {${name} ne ${subport}} {
|
|
# OpenMP is disabled now
|
|
# See https://github.com/macports/macports-ports/pull/3902 for an attempt to fix the issue
|
|
build.env-append MDA_USE_OPENMP=0
|
|
depends_build-append port:py${python.version}-setuptools
|
|
depends_lib-append port:py${python.version}-biopython \
|
|
port:py${python.version}-GridDataFormats \
|
|
port:py${python.version}-gsd \
|
|
port:py${python.version}-joblib \
|
|
port:py${python.version}-matplotlib \
|
|
port:py${python.version}-mock \
|
|
port:py${python.version}-mmtf-python \
|
|
port:py${python.version}-networkx \
|
|
port:py${python.version}-numpy \
|
|
port:py${python.version}-scipy \
|
|
port:py${python.version}-six \
|
|
port:py${python.version}-tqdm
|
|
livecheck.type none
|
|
}
|