e3d6bf4c7d
Closes Homebrew/homebrew#30996.
60 lines
1.5 KiB
Ruby
60 lines
1.5 KiB
Ruby
require "formula"
|
|
|
|
class R3 < Formula
|
|
homepage "https://github.com/c9s/r3"
|
|
url "https://github.com/c9s/r3/archive/1.3.3.tar.gz"
|
|
sha1 "2626e78e5d5afb64561b6c468e357db14597aef6"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "bf1eec1e94c0ef4f7862621277bda3d9456cf70f" => :mavericks
|
|
sha1 "690d863995532a33917a867bbc616887c542ba57" => :mountain_lion
|
|
sha1 "5d9e530068824ce31352258bbd826dfbb520e40a" => :lion
|
|
end
|
|
|
|
option :universal
|
|
option "with-graphviz", "Enable Graphviz functions"
|
|
|
|
head "https://github.com/c9s/r3.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "pcre"
|
|
depends_on "graphviz" => :optional
|
|
depends_on "jemalloc" => :recommended
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system "./autogen.sh"
|
|
|
|
args = %W{
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
}
|
|
|
|
args << "--enable-graphviz" if build.with? "graphviz"
|
|
args << "--with-malloc=jemalloc" if build.with? "jemalloc"
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include "r3.h"
|
|
int main() {
|
|
node * n = r3_tree_create(1);
|
|
r3_tree_free(n);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.cpp", "-o", "test",
|
|
"-lr3", "-I#{include}/r3"
|
|
system "./test"
|
|
end
|
|
end
|