summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/motif/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/motif/package.py')
-rw-r--r--var/spack/repos/builtin/packages/motif/package.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/motif/package.py b/var/spack/repos/builtin/packages/motif/package.py
new file mode 100644
index 0000000000..fdafcc065a
--- /dev/null
+++ b/var/spack/repos/builtin/packages/motif/package.py
@@ -0,0 +1,26 @@
+# 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 Motif(AutotoolsPackage):
+ """"
+ Motif - Graphical user interface (GUI)
+ specification and the widget toolkit
+ """
+ homepage = "http://motif.ics.com/"
+ url = "http://cfhcable.dl.sourceforge.net/project/motif/Motif 2.3.8 Source Code/motif-2.3.8.tar.gz"
+
+ version('2.3.8', '7572140bb52ba21ec2f0c85b2605e2b1')
+
+ depends_on("flex")
+ depends_on("libx11")
+ depends_on("libxt")
+ depends_on("libxext")
+ depends_on("libxft")
+ depends_on("libxcomposite")
+ depends_on("libxfixes")
+ depends_on("xbitmaps")