homebrew-core/Formula/hwloc.rb
Brett Koonce 2d303d7b9b hwloc 1.6.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-19 20:03:54 -08:00

16 lines
490 B
Ruby

require 'formula'
class Hwloc < Formula
homepage 'http://www.open-mpi.org/projects/hwloc/'
url 'http://www.open-mpi.org/software/hwloc/v1.6/downloads/hwloc-1.6.1.tar.gz'
sha1 'bb79c1fe01a46ea9249efe83fa133c3da43b40d0'
depends_on 'pkg-config' => :build
# Uses Cairo, tested against Snow Leopard version
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end