33 lines
1.2 KiB
Ruby
33 lines
1.2 KiB
Ruby
class Libre < Formula
|
|
desc "Toolkit library for asynchronous network I/O with protocol stacks"
|
|
homepage "https://github.com/creytiv/re"
|
|
url "https://github.com/creytiv/re/releases/download/v0.6.1/re-0.6.1.tar.gz"
|
|
sha256 "cd5bfc79640411803b200c7531e4ba8a230da3806746d3bd2de970da2060fe43"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "48714fc735db00829b900935b7a0640a74f9f39174fc57775fa145428acd7759"
|
|
sha256 cellar: :any, big_sur: "73bb1c1c6ebe022f294cc73e672154579e4d8e634f109883bcbb68818e1f3374"
|
|
sha256 cellar: :any, catalina: "0ca7e76631b5f30d72b4bc4248e894d00f05cfb785c98856d82cd5cc13e591f9"
|
|
sha256 cellar: :any, mojave: "5d43d79ef2406e40c858463189ca8a40f0b13ede8a7090b56ba0fd1ef942dabc"
|
|
sha256 cellar: :any, high_sierra: "32787ca36540a0c7c330560076e25726bcca0f08a7b77014d3837bd9c7ca1840"
|
|
end
|
|
|
|
depends_on "openssl@1.1"
|
|
|
|
uses_from_macos "zlib"
|
|
|
|
def install
|
|
system "make", "SYSROOT=#{MacOS.sdk_path}/usr", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <re/re.h>
|
|
int main() {
|
|
return libre_init();
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-L#{lib}", "-lre"
|
|
end
|
|
end
|