Files
homebrew-tap-local/Formula/brotli.rb
T

44 lines
1.7 KiB
Ruby

class Brotli < Formula
bottle do
root_url "https://homebrew.hyprnet/bottles"
sha256 cellar: :any, arm64_sequoia: "b8e388c96be5a63a46e0335c390fecb20dda7adb1368a2ba0209b38cae17c708"
sha256 cellar: :any, arm64_tahoe: "71ffd30ccd74a9f28cfb210c21fcdc1aa5fec79e23ad2264b6dbceb73437601f"
sha256 cellar: :any_skip_relocation, x86_64_linux: "d97618daaa84b66bc783888297f1765eb6f60e6a78e9b7c2ba0406889c159c05"
end
desc "Generic-purpose lossless compression algorithm by Google"
homepage "https://github.com/google/brotli"
url "https://github.com/google/brotli/archive/refs/tags/v1.2.0.tar.gz"
mirror "http://fresh-center.net/linux/misc/brotli-1.2.0.tar.gz"
mirror "http://fresh-center.net/linux/misc/legacy/brotli-1.2.0.tar.gz"
sha256 "816c96e8e8f193b40151dad7e8ff37b1221d019dbcb9c35cd3fadbfe6477dfec"
license "MIT"
compatibility_version 1
head "https://github.com/google/brotli.git", branch: "master"
livecheck do
url :stable
regex(/^v?(\d+(?:\.\d+)+)$/i)
end
depends_on "cmake" => :build
def install
system "cmake", "-S", ".", "-B", "build", "-DCMAKE_INSTALL_RPATH=#{rpath}", *std_cmake_args
system "cmake", "--build", "build", "--verbose"
system "ctest", "--test-dir", "build", "--verbose"
system "cmake", "--install", "build"
system "cmake", "-S", ".", "-B", "build-static", "-DBUILD_SHARED_LIBS=OFF", *std_cmake_args
system "cmake", "--build", "build-static"
lib.install buildpath.glob("build-static/*.a")
end
test do
(testpath/"file.txt").write("Hello, World!")
system bin/"brotli", "file.txt", "file.txt.br"
system bin/"brotli", "file.txt.br", "--output=out.txt", "--decompress"
assert_equal (testpath/"file.txt").read, (testpath/"out.txt").read
end
end