diff options
author | asmaahassan90 <31959389+asmaahassan90@users.noreply.github.com> | 2019-09-02 16:51:53 +0200 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-09-02 09:51:53 -0500 |
commit | c184e79b91a63299c249e207dba1e8cd95a8e5d0 (patch) | |
tree | 6e06ac53ea747e5107ecb773cdeef99be6ef33ea | |
parent | 4e487bf308f80bfea2365565f5b2da3acdaeb757 (diff) | |
download | spack-c184e79b91a63299c249e207dba1e8cd95a8e5d0.tar.gz spack-c184e79b91a63299c249e207dba1e8cd95a8e5d0.tar.bz2 spack-c184e79b91a63299c249e207dba1e8cd95a8e5d0.tar.xz spack-c184e79b91a63299c249e207dba1e8cd95a8e5d0.zip |
Add fpocket (#12675)
* Add fpocket
* fix recipe
break down the description to pass lint
* update license
* make changes as per maintainer's review
-rw-r--r-- | var/spack/repos/builtin/packages/fpocket/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fpocket/package.py b/var/spack/repos/builtin/packages/fpocket/package.py new file mode 100644 index 0000000000..5d5e92dc4d --- /dev/null +++ b/var/spack/repos/builtin/packages/fpocket/package.py @@ -0,0 +1,26 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class Fpocket(MakefilePackage): + """fpocket is a very fast open source protein pocket detection algorithm + based on Voronoi tessellation.""" + + homepage = "https://github.com/Discngine/fpocket" + version('master', branch='master', + git='https://github.com/Discngine/fpocket.git') + + depends_on("netcdf") + + def setup_environment(self, spack_env, run_env): + if self.compiler.name == 'gcc': + spack_env.set('CXX', 'g++') + + def edit(self): + makefile = FileFilter('makefile') + makefile.filter('BINDIR .*', 'BINDIR = %s/bin' % self.prefix) + makefile.filter('MANDIR .*', 'MANDIR = %s/man/man8' % self.prefix) |