From c184e79b91a63299c249e207dba1e8cd95a8e5d0 Mon Sep 17 00:00:00 2001 From: asmaahassan90 <31959389+asmaahassan90@users.noreply.github.com> Date: Mon, 2 Sep 2019 16:51:53 +0200 Subject: Add fpocket (#12675) * Add fpocket * fix recipe break down the description to pass lint * update license * make changes as per maintainer's review --- .../repos/builtin/packages/fpocket/package.py | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 var/spack/repos/builtin/packages/fpocket/package.py 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) -- cgit v1.2.3-70-g09d2