diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2022-06-24 02:28:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-24 11:28:12 +0200 |
commit | 1375b1975bd8f6448c105419a5adbf281b2f4a50 (patch) | |
tree | df9a6836fa8fc1560d561a4142f01466b5a3b1f5 | |
parent | c533612ab6e4d4b4c46d3b827fae3687302cd22a (diff) | |
download | spack-1375b1975bd8f6448c105419a5adbf281b2f4a50.tar.gz spack-1375b1975bd8f6448c105419a5adbf281b2f4a50.tar.bz2 spack-1375b1975bd8f6448c105419a5adbf281b2f4a50.tar.xz spack-1375b1975bd8f6448c105419a5adbf281b2f4a50.zip |
librttopo: add missing Autotools deps (#31252)
-rw-r--r-- | var/spack/repos/builtin/packages/librttopo/package.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/librttopo/package.py b/var/spack/repos/builtin/packages/librttopo/package.py index 86711b1410..2b5c876778 100644 --- a/var/spack/repos/builtin/packages/librttopo/package.py +++ b/var/spack/repos/builtin/packages/librttopo/package.py @@ -13,12 +13,18 @@ class Librttopo(AutotoolsPackage): """ homepage = "https://git.osgeo.org/gitea/rttopo" - git = "https://git.osgeo.org/gitea/rttopo/librttopo.git" + url = "https://git.osgeo.org/gitea/rttopo/librttopo/archive/librttopo-1.1.0.tar.gz" + git = "https://git.osgeo.org/gitea/rttopo/librttopo.git" - version('1.1.0', tag='librttopo-1.1.0') + version('1.1.0', sha256='2e2fcabb48193a712a6c76ac9a9be2a53f82e32f91a2bc834d9f1b4fa9cd879f') depends_on('geos') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') + depends_on('m4', type='build') + def autoreconf(self, spec, prefix): bash = which('bash') bash('./autogen.sh') |