update flux dependencies and package (#2541)

* update flux dependencies and package

* refinements from @adamjstewart

* fix flux document generation

The docbook-xsl package has been added, and correctly configures catalog
files to generate documentation correctly with asciidoc.
This commit is contained in:
Tom Scogland
2016-12-09 17:19:53 -08:00
committed by Todd Gamblin
parent d7e9134d42
commit 943c007fb5
8 changed files with 90 additions and 40 deletions

View File

@@ -25,7 +25,7 @@
from spack import *
class Libffi(Package):
class Libffi(AutotoolsPackage):
"""The libffi library provides a portable, high level programming
interface to various calling conventions. This allows a programmer
to call any function specified by a call interface description at
@@ -37,8 +37,3 @@ class Libffi(Package):
# version('3.1', 'f5898b29bbfd70502831a212d9249d10',url =
# "ftp://sourceware.org/pub/libffi/libffi-3.1.tar.gz") # Has a bug
# $(lib64) instead of ${lib64} in libffi.pc
def install(self, spec, prefix):
configure("--prefix=%s" % prefix)
make()
make("install")