diff options
author | Bernhard Kaindl <43588962+bernhardkaindl@users.noreply.github.com> | 2021-10-12 23:22:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-12 23:22:49 +0200 |
commit | e7bfaeea52840a5de97ee1f2181aabab3c4a10d5 (patch) | |
tree | b209c4080bb9d2458643095954397946a7d2cda3 | |
parent | 1ed695dca790c5e5e1a262ed974fb0fa043e71df (diff) | |
download | spack-e7bfaeea52840a5de97ee1f2181aabab3c4a10d5.tar.gz spack-e7bfaeea52840a5de97ee1f2181aabab3c4a10d5.tar.bz2 spack-e7bfaeea52840a5de97ee1f2181aabab3c4a10d5.tar.xz spack-e7bfaeea52840a5de97ee1f2181aabab3c4a10d5.zip |
libical: Add missing deps: pkgconfig, glib and libxml2 (#26618)
Libical needs pkgconfig, glib and libxml2 to build.
-rw-r--r-- | var/spack/repos/builtin/packages/libical/package.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/libical/package.py b/var/spack/repos/builtin/packages/libical/package.py index 9d841a6061..860661a128 100644 --- a/var/spack/repos/builtin/packages/libical/package.py +++ b/var/spack/repos/builtin/packages/libical/package.py @@ -12,11 +12,15 @@ class Libical(CMakePackage): homepage = "https://github.com/libical/libical" url = "https://github.com/libical/libical/archive/v3.0.8.tar.gz" + version('3.0.11', sha256='1e6c5e10c5a48f7a40c68958055f0e2759d9ab3563aca17273fe35a5df7dbbf1') version('3.0.8', sha256='09fecacaf75ba5a242159e3a9758a5446b5ce4d0ab684f98a7040864e1d1286f') - depends_on('cmake@3.11.0:', type='build') + depends_on('cmake@3.1.0:', type='build') depends_on('perl', type='build') + depends_on('pkgconfig', type='build') + depends_on('glib@2.32:') depends_on('icu4c') + depends_on('libxml2@2.7.3:') def cmake_args(self): return ['-DENABLE_GTK_DOC=OFF'] |