diff options
author | Sinan <sbulutw@gmail.com> | 2021-11-05 06:01:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-04 21:01:42 -0600 |
commit | 288176326c8d52dea65084d6b1b8aab5f5df0369 (patch) | |
tree | f3d6cde6d1a85a1bcdb282b1c11287d8fd24702a /var | |
parent | 82b45d112f880dffd3f0b691268013c094283e34 (diff) | |
download | spack-288176326c8d52dea65084d6b1b8aab5f5df0369.tar.gz spack-288176326c8d52dea65084d6b1b8aab5f5df0369.tar.bz2 spack-288176326c8d52dea65084d6b1b8aab5f5df0369.tar.xz spack-288176326c8d52dea65084d6b1b8aab5f5df0369.zip |
new package: librttopo (#27182)
Co-authored-by: sbulut <sbulut@3vgeomatics.com>
Co-authored-by: Tamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/librttopo/package.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/librttopo/package.py b/var/spack/repos/builtin/packages/librttopo/package.py new file mode 100644 index 0000000000..ea314e7cad --- /dev/null +++ b/var/spack/repos/builtin/packages/librttopo/package.py @@ -0,0 +1,24 @@ +# 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 Librttopo(AutotoolsPackage): + """ + The RT Topology Library exposes an API to create and manage standard \ + (ISO 13249 aka SQL/MM) topologies using user-provided data stores. + """ + + homepage = "https://git.osgeo.org/gitea/rttopo" + git = "https://git.osgeo.org/gitea/rttopo/librttopo.git" + + version('1.1.0', tag='librttopo-1.1.0') + + depends_on('geos') + + def autoreconf(self, spec, prefix): + bash = which('bash') + bash('./autogen.sh') |