Adding package namd (#4321)

* Initial version of the namd package

* Modified charm to consider compile against intel/intel-mpi

* Correction of namd to compile with intel-mkl and intel compiler

* Adding inclue64 in the prefix

* adding property for the build directory

* removing useless function build
This commit is contained in:
Nicolas Richart
2017-06-14 20:11:30 +02:00
committed by Adam J. Stewart
parent bc2c4a14c2
commit f06c23ef42
4 changed files with 194 additions and 21 deletions

View File

@@ -60,17 +60,18 @@ class Prefix(str):
def __new__(cls, path):
s = super(Prefix, cls).__new__(cls, path)
s.bin = join_path(s, 'bin')
s.bin64 = join_path(s, 'bin64')
s.sbin = join_path(s, 'sbin')
s.etc = join_path(s, 'etc')
s.include = join_path(s, 'include')
s.lib = join_path(s, 'lib')
s.lib64 = join_path(s, 'lib64')
s.libexec = join_path(s, 'libexec')
s.share = join_path(s, 'share')
s.doc = join_path(s.share, 'doc')
s.info = join_path(s.share, 'info')
s.bin = join_path(s, 'bin')
s.bin64 = join_path(s, 'bin64')
s.sbin = join_path(s, 'sbin')
s.etc = join_path(s, 'etc')
s.include = join_path(s, 'include')
s.include64 = join_path(s, 'include64')
s.lib = join_path(s, 'lib')
s.lib64 = join_path(s, 'lib64')
s.libexec = join_path(s, 'libexec')
s.share = join_path(s, 'share')
s.doc = join_path(s.share, 'doc')
s.info = join_path(s.share, 'info')
s.man = join_path(s, 'man')
s.man1 = join_path(s.man, 'man1')