58 lines
2.9 KiB
Ruby
58 lines
2.9 KiB
Ruby
class CrushTools < Formula
|
|
desc "Command-line tools for processing delimited text data"
|
|
homepage "https://github.com/google/crush-tools"
|
|
license "Apache-2.0"
|
|
|
|
stable do
|
|
url "https://github.com/google/crush-tools/releases/download/20150716/crush-tools-20150716.tar.gz"
|
|
sha256 "ef2f9c919536a2f13b3065af3a9a9756c90ede53ebd67d3e169c90ad7cd1fb05"
|
|
|
|
# Fix -flat_namespace being used on Big Sur and later.
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/03cf8088210822aa2c1ab544ed58ea04c897d9c4/libtool/configure-pre-0.4.2.418-big_sur.diff"
|
|
sha256 "83af02f2aa2b746bb7225872cab29a253264be49db0ecebb12f841562d9a2923"
|
|
end
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_ventura: "2965fb45027df30c48246aaa1db54932d7ab914dc45d44efc542e365d2b1faa1"
|
|
sha256 cellar: :any, arm64_monterey: "d00690bd134ad5019aefa7b28a705a3adbb5f4487ea807ecc88f72dd1094f1f9"
|
|
sha256 cellar: :any, arm64_big_sur: "c126bcdab0ba561df10768d423dd6b9336e7464707e3af7c17e65178cbffd4f5"
|
|
sha256 cellar: :any, ventura: "85877e38560a463505235eaa44659374a880311fa5c020b140312cd6a08d879b"
|
|
sha256 cellar: :any, monterey: "81e41d4da27071d4e43a0dfcee470375f00a9629924165deb4a098cc0a205192"
|
|
sha256 cellar: :any, big_sur: "1e4c85501024bcfef0641f3e16abd540597f68accc5118b6da5a7f24218fba00"
|
|
sha256 cellar: :any, catalina: "c5172b5ab0e1d85d0e1e87e0dc83b66b5ee8ffda0d86f85f586e4e8850268861"
|
|
sha256 cellar: :any, mojave: "148684da73eef05ce20f602fdc2d0a9795afbdb6db9cd324c74860c6600ff835"
|
|
sha256 cellar: :any, high_sierra: "729196f80c05c5e395c145752a7a54cc1488a6cf1767b43ed9f639c2f3f3c463"
|
|
sha256 cellar: :any, sierra: "28286e04a7baf7790f446f2f474a74387e6c0282df70d89ade39c84187394ce4"
|
|
sha256 cellar: :any, el_capitan: "0c7c58b9f2ec87237934eda55932b200c6d7b7f6dbb07a35e0a49ed389e984d3"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "6f998134ebcc5e99fe863e63924fcdc15f731bd1c0315c0a9a5f9ac0045fc4f1"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/google/crush-tools.git", branch: "master"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "pcre"
|
|
|
|
uses_from_macos "m4" => :build
|
|
|
|
conflicts_with "aggregate", because: "both install an `aggregate` binary"
|
|
conflicts_with "num-utils", because: "both install an `range` binary"
|
|
|
|
def install
|
|
system "./bootstrap" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_equal "1 2 6 7 8 9 10", shell_output("#{bin}/range 1,2,6-10").strip
|
|
assert_equal "o", shell_output("#{bin}/tochar 111")
|
|
end
|
|
end
|