diff options
author | ketsubouchi <kenta.tsubouchi@allin-one.jp> | 2021-02-09 05:27:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 12:27:36 -0800 |
commit | 0e3b12776cd7b665d3a8149ea61731424fc82fc5 (patch) | |
tree | 9ca03c2160d21f53ff40b3beced2dce47167fbfa | |
parent | 843e1993ae7ad05946c57c1c48cff2a835c530ae (diff) | |
download | spack-0e3b12776cd7b665d3a8149ea61731424fc82fc5.tar.gz spack-0e3b12776cd7b665d3a8149ea61731424fc82fc5.tar.bz2 spack-0e3b12776cd7b665d3a8149ea61731424fc82fc5.tar.xz spack-0e3b12776cd7b665d3a8149ea61731424fc82fc5.zip |
xforms: new package (#21535)
-rw-r--r-- | var/spack/repos/builtin/packages/xforms/package.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/xforms/package.py b/var/spack/repos/builtin/packages/xforms/package.py new file mode 100644 index 0000000000..74faa5aa22 --- /dev/null +++ b/var/spack/repos/builtin/packages/xforms/package.py @@ -0,0 +1,26 @@ +# Copyright 2013-2021 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 Xforms(AutotoolsPackage): + """This is the Free Software distribution of the XForms Library, a + graphical user interface toolkit for X Window Systems.""" + + homepage = "http://www.nongnu.org/xforms/" + url = "http://download.savannah.gnu.org/releases/xforms/xforms-1.0.91.tar.gz" + + version('1.2.4', sha256='78cc6b07071bbeaa1f906e0a22d5e9980e48f8913577bc082d661afe5cb75696') + version('1.2.3', sha256='7989b39598c769820ad451ad91e5cb0de29946940c8240aac94ca8238c2def61') + version('1.0.91', sha256='88684237c77489bcb1fbc9a794621a2919aa800e1c0a6d83d679b97980e3441d') + + depends_on('libx11', type='link') + depends_on('libxpm', type='link') + depends_on('jpeg', type='link') + + def configure_args(self): + args = ['--enable-static'] + return args |