summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGeoffrey Oxberry <goxberry@gmail.com>2019-08-09 16:10:00 -0700
committerAdam J. Stewart <ajstewart426@gmail.com>2019-08-09 18:10:00 -0500
commit92c65f3150df1a2dcd7ef1d42cb5ef51476acd2c (patch)
tree9b938c6fc5e6787cec3bdc5fb243a8bc1f1bbdd2 /var
parentb54576abaf09abb5cabae167c2bc7aef6016ea0f (diff)
downloadspack-92c65f3150df1a2dcd7ef1d42cb5ef51476acd2c.tar.gz
spack-92c65f3150df1a2dcd7ef1d42cb5ef51476acd2c.tar.bz2
spack-92c65f3150df1a2dcd7ef1d42cb5ef51476acd2c.tar.xz
spack-92c65f3150df1a2dcd7ef1d42cb5ef51476acd2c.zip
Add new package: libfive@master (#12334)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/libfive/package.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libfive/package.py b/var/spack/repos/builtin/packages/libfive/package.py
new file mode 100644
index 0000000000..cecb2d895f
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libfive/package.py
@@ -0,0 +1,24 @@
+# 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 Libfive(CMakePackage):
+ """libfive is a software library and set of tools for solid modeling."""
+
+ homepage = "https://libfive.com"
+ git = "https://github.com/libfive/libfive.git"
+
+ # https://libfive.com/download/ recommends working from the master branch
+ version('master', branch='master')
+
+ depends_on('pkg-config', type='build')
+ depends_on('cmake@3.3:', type='build')
+ depends_on('boost@1.65:')
+ depends_on('eigen@3.3.0:')
+ depends_on('libpng')
+ depends_on('qt@5.7:')
+ depends_on('guile@2.2.1:')