summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric <erimar77@users.noreply.github.com>2018-12-11 23:08:45 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2018-12-11 23:08:45 -0600
commitce00c13297443e52ec3125e9e8ecc46957bb9979 (patch)
treeb4014d5bfaf53c5711c9391d220bfce641c74a52
parent2b483f24f1350428f61fdaac2975afd5ea7c59c9 (diff)
downloadspack-ce00c13297443e52ec3125e9e8ecc46957bb9979.tar.gz
spack-ce00c13297443e52ec3125e9e8ecc46957bb9979.tar.bz2
spack-ce00c13297443e52ec3125e9e8ecc46957bb9979.tar.xz
spack-ce00c13297443e52ec3125e9e8ecc46957bb9979.zip
LEMON: Create new package (#10077)
-rw-r--r--var/spack/repos/builtin/packages/lemon/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/lemon/package.py b/var/spack/repos/builtin/packages/lemon/package.py
new file mode 100644
index 0000000000..3d8d911968
--- /dev/null
+++ b/var/spack/repos/builtin/packages/lemon/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2018 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 Lemon(CMakePackage):
+ """LEMON stands for Library for Efficient Modeling and Optimization in
+ Networks. It is a C++ template library providing efficient implementations
+ of common data structures and algorithms with focus on combinatorial
+ optimization tasks connected mainly with graphs and networks."""
+
+ homepage = "http://lemon.cs.elte.hu/trac/lemon"
+ url = "http://lemon.cs.elte.hu/pub/sources/lemon-1.3.1.tar.gz"
+
+ version('1.3.1', sha256='71b7c725f4c0b4a8ccb92eb87b208701586cf7a96156ebd821ca3ed855bad3c8')