Massive conversion from Package to AutotoolsPackage (#2845)

* Massive conversion from Package to AutotoolsPackage

* Forgot to convert p4est to AutotoolsPackage

* Fix typo

* Fix broken link in docs
This commit is contained in:
Adam J. Stewart
2017-01-18 12:34:09 -06:00
committed by Todd Gamblin
parent 5812081b80
commit 02f92fc7f8
313 changed files with 384 additions and 2119 deletions

View File

@@ -26,7 +26,7 @@
import os
class Mpip(Package):
class Mpip(AutotoolsPackage):
"""mpiP: Lightweight, Scalable MPI Profiling"""
homepage = "http://mpip.sourceforge.net/"
url = "http://downloads.sourceforge.net/project/mpip/mpiP/mpiP-3.4.1/mpiP-3.4.1.tar.gz"
@@ -38,7 +38,5 @@ class Mpip(Package):
depends_on('libunwind', when=os.uname()[4] == "x86_64", type="build")
depends_on("mpi", type="build")
def install(self, spec, prefix):
configure("--prefix=" + prefix, "--without-f77")
make()
make("install")
def configure_args(self):
return ['--without-f77']