Added missing cmake dependencies

This commit is contained in:
Elizabeth F 2016-02-29 22:31:18 -05:00 committed by citibeth
parent 21181075b4
commit e414c5fdfb
3 changed files with 5 additions and 3 deletions

View file

@ -46,6 +46,7 @@ class Cgal(Package):
depends_on('mpfr')
depends_on('gmp')
depends_on('zlib')
depends_on('cmake')
# FIXME : Qt5 dependency missing (needs Qt5 and OpenGL)
# FIXME : Optional third party libraries missing

View file

@ -13,13 +13,13 @@ class Curl(Package):
version('7.43.0', '11bddbb452a8b766b932f859aaeeed39')
version('7.42.1', '296945012ce647b94083ed427c1877a8')
depends_on("openssl")
# depends_on("openssl")
depends_on("zlib")
def install(self, spec, prefix):
configure('--prefix=%s' % prefix,
'--with-zlib=%s' % spec['zlib'].prefix,
'--with-ssl=%s' % spec['openssl'].prefix)
'--with-zlib=%s' % spec['zlib'].prefix)
# '--with-ssl=%s' % spec['openssl'].prefix)
make()
make("install")

View file

@ -7,6 +7,7 @@ class Expat(Package):
version('2.1.0', 'dd7dab7a5fea97d2a6a43f511449b7cd')
depends_on('cmake')
def install(self, spec, prefix):