blob: 6e7d7012ee348a8d995a78977de6f8afe290f358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Hwloc < Formula
homepage 'http://www.open-mpi.org/projects/hwloc/'
url 'http://www.open-mpi.org/software/hwloc/v1.8/downloads/hwloc-1.8.tar.gz'
sha1 '6c92ad6fc795ef380637b38835f20a01192d6ad5'
depends_on 'pkg-config' => :build
depends_on 'cairo' => :optional
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|