forked from plumed/conda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#! /usr/bin/env bash | ||
|
||
cd python | ||
make pip | ||
export plumed_default_kernel=$PREFIX/lib/libplumedKernel$SHLIB_EXT | ||
#export plumed_disable_rtld_deepbind=yes | ||
|
||
$PYTHON -m pip install . --no-deps -vv | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CONDA_BUILD_SYSROOT: | ||
- /opt/MacOSX10.13.sdk # [osx and x86_64] | ||
- /opt/MacOSX11.0.sdk # [osx and arm64] | ||
python: | ||
- 3.8 | ||
- 3.9 | ||
- 3.10 | ||
- 3.11 | ||
- 3.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{% set name = "py-plumed" %} | ||
{% set version = "2.10" %} | ||
{% set git_rev = "b0ffcb55ad8cc3c71ec5c30a1bd46f68dd33bceb" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }}.git.{{ git_rev }} | ||
|
||
source: | ||
# url: https://github.com/plumed/plumed2/archive/v{{ version }}.tar.gz | ||
# sha256: 612d2387416b5f82dd8545709921440370e144fd46cef633654cf0ee43bac5f8 | ||
git_url: https://github.com/plumed/plumed2.git | ||
git_rev: {{ git_rev }} | ||
|
||
build: | ||
number: 0 | ||
skip: True # [win or py2k] | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- make | ||
host: | ||
- python | ||
- pip | ||
- cython | ||
run: | ||
- plumed | ||
- python | ||
|
||
test: | ||
imports: | ||
- plumed | ||
commands: | ||
- python -c "import plumed; p=plumed.Plumed(); print(p)" | ||
|
||
about: | ||
home: http://www.plumed.org/ | ||
license: LGPL-3.0 | ||
license_family: GPL | ||
license_file: COPYING.LESSER | ||
summary: 'Python wrappers for plumed library' | ||
description: | | ||
PLUMED is an open source library for free energy calculations in | ||
molecular systems which works together with some of the most | ||
popular molecular dynamics engines. | ||
doc_url: https://www.plumed.org/doc | ||
dev_url: https://github.com/plumed/plumed2 | ||
|
||
extra: | ||
recipe-maintainers: | ||
- GiovanniBussi |