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

@@ -26,7 +26,7 @@
import os
class Munge(Package):
class Munge(AutotoolsPackage):
""" MUNGE Uid 'N' Gid Emporium """
homepage = "https://code.google.com/p/munge/"
url = "https://github.com/dun/munge/releases/download/munge-0.5.11/munge-0.5.11.tar.bz2"
@@ -39,7 +39,4 @@ class Munge(Package):
def install(self, spec, prefix):
os.makedirs(os.path.join(prefix, "lib/systemd/system"))
configure("--prefix=%s" % prefix)
make()
make("install")
super(Munge, self).install(spec, prefix)