08fe06364a
Closes Homebrew/homebrew#34946.
32 lines
735 B
Ruby
32 lines
735 B
Ruby
require "formula"
|
|
|
|
class Libre < Formula
|
|
homepage "http://www.creytiv.com"
|
|
url "http://www.creytiv.com/pub/re-0.4.11.tar.gz"
|
|
sha1 "6e04f8e30eaa273134c47433b41bcffadfca194c"
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 2
|
|
sha1 "390bde82308366ebed75d2b1d0be82a0d7d96078" => :yosemite
|
|
sha1 "77ab73229421ff69668e4c98ca50df4ba5bbee5b" => :mavericks
|
|
sha1 "3d3eeaf47ebeeca2dc37fa7ac8e3e865f4050455" => :mountain_lion
|
|
end
|
|
|
|
depends_on "openssl"
|
|
depends_on "lzlib"
|
|
|
|
def install
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
(testpath/'test.c').write <<-EOS.undent
|
|
#include <re/re.h>
|
|
int main() {
|
|
return libre_init();
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-lre"
|
|
end
|
|
end
|