Fix pkgconfig dependencies (#12714)

pkgconfig is the virtual dependency, pkg-config is an implementation.
This commit is contained in:
Michael Kuhn 2019-09-09 19:54:47 +02:00 committed by Adam J. Stewart
parent 4de32033b1
commit 62f0286f5e
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ class Gtksourceview(AutotoolsPackage):
depends_on('libtool', type='build')
depends_on('gobject-introspection', type='build')
depends_on('intltool', type='build')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('gettext')
depends_on('glib@2.48.0:', when='@3.24.11:4.2.0')
depends_on('gtkplus@3.20.0:', when='@3.24.11:4.2.0')

View File

@ -15,7 +15,7 @@ class Libfive(CMakePackage):
# https://libfive.com/download/ recommends working from the master branch
version('master', branch='master')
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('cmake@3.3:', type='build')
depends_on('boost@1.65:')
depends_on('eigen@3.3.0:')

View File

@ -15,7 +15,7 @@ class Librsvg(AutotoolsPackage):
version('2.44.14', sha256='6a85a7868639cdd4aa064245cc8e9d864dad8b8e9a4a8031bb09a4796bc4e303')
depends_on("gobject-introspection", type='build')
depends_on("pkg-config", type='build')
depends_on("pkgconfig", type='build')
depends_on("rust", type='build')
depends_on("cairo")
depends_on("gdk-pixbuf")