Fix pkgconfig dependencies (#22702)

pkgconfig is the correct virtual provider.
This commit is contained in:
Michael Kuhn 2021-04-02 01:45:01 +02:00 committed by GitHub
parent 9c139bf7a2
commit c89fa98b16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@ class Dftd4(MesonPackage):
depends_on("cmake", type="build")
depends_on("lapack")
depends_on("meson@0.57.1:", type="build") # mesonbuild/meson#8377
depends_on("pkg-config", type="build")
depends_on("pkgconfig", type="build")
depends_on("py-cffi", when="+python")
depends_on("python@3.6:", when="+python")

View File

@ -21,7 +21,7 @@ class Libpulsar(CMakePackage):
depends_on('zstd')
depends_on('boost')
depends_on('protobuf')
depends_on('pkg-config')
depends_on('pkgconfig')
depends_on('openssl')
depends_on('cmake @3.14:', type='build')
depends_on('curl', type=('build', 'link'))

View File

@ -13,7 +13,7 @@ class Poke(AutotoolsPackage, GNUMirrorPackage):
version('1.0', sha256='de930b8700c0772b3c2cd0d0ca35f50fd3d77bdf82c6251eb516b49e8ca25b0a')
depends_on('pkgconf')
depends_on('pkgconfig')
depends_on('readline')
depends_on('bdw-gc')
depends_on('json-c')

View File

@ -31,7 +31,7 @@ class Squashfuse(AutotoolsPackage):
# Note: typically libfuse is external, but this implies that you have to make
# pkg-config external too, because spack's pkg-config doesn't know how to
# locate system pkg-config's fuse.pc/fuse3.pc
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
# compression libs
depends_on('zlib', when='+zlib')