30 lines
1,020 B
Ruby
30 lines
1,020 B
Ruby
class Libfabric < Formula
|
|
desc "OpenFabrics libfabric"
|
|
homepage "https://ofiwg.github.io/libfabric/"
|
|
url "https://github.com/ofiwg/libfabric/releases/download/v1.7.1/libfabric-1.7.1.tar.bz2"
|
|
sha256 "f4e9cc48319763cff4943de96bf527b737c9f1d6ac3088b8b5c75d07bd719569"
|
|
head "https://github.com/ofiwg/libfabric.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "958a3ebbe725be48354eb85c857defda862b62bcc091d6f4fc520e31db72fc14" => :mojave
|
|
sha256 "684433ce8f87a62b80ae6599633ee90792787bf9f556b4dde314ff5333653ef8" => :high_sierra
|
|
sha256 "769ee2d5d437a57b45b979c64e2a34528015648a9afc9c8c2db72d33ca819370" => :sierra
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
|
|
def install
|
|
system "autoreconf", "-fiv"
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system "#(bin}/fi_info"
|
|
end
|
|
end
|