60 lines
2.7 KiB
Ruby
60 lines
2.7 KiB
Ruby
class Jq < Formula
|
|
desc "Lightweight and flexible command-line JSON processor"
|
|
homepage "https://stedolan.github.io/jq/"
|
|
license "MIT"
|
|
|
|
stable do
|
|
url "https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz"
|
|
sha256 "5de8c8e29aaa3fb9cc6b47bb27299f271354ebb72514e3accadc7d38b5bbaa72"
|
|
|
|
# Fix -flat_namespace being used on Big Sur and later.
|
|
patch do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/03cf8088210822aa2c1ab544ed58ea04c897d9c4/libtool/configure-big_sur.diff"
|
|
sha256 "35acd6aebc19843f1a2b3a63e880baceb0f5278ab1ace661e57a502d9d78c93c"
|
|
end
|
|
end
|
|
|
|
livecheck do
|
|
url :stable
|
|
regex(/^(?:jq[._-])?v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any, arm64_ventura: "4622927182fbc7bf27c4b706e005fbae2700d15e69a68ef7002aed2676b8a4f7"
|
|
sha256 cellar: :any, arm64_monterey: "f70e1ae8df182b242ca004492cc0a664e2a8195e2e46f30546fe78e265d5eb87"
|
|
sha256 cellar: :any, arm64_big_sur: "674b3ae41c399f1e8e44c271b0e6909babff9fcd2e04a2127d25e2407ea4dd33"
|
|
sha256 cellar: :any, ventura: "b70ec02353c5f6cb69d947e1506e71c96d2952ed4099ae3948c6c61420b16ef9"
|
|
sha256 cellar: :any, monterey: "7fee6ea327062b37d34ef5346a84810a1752cc7146fff1223fab76c9b45686e0"
|
|
sha256 cellar: :any, big_sur: "bf0f8577632af7b878b6425476f5b1ab9c3bf66d65affb0c455048a173a0b6bf"
|
|
sha256 cellar: :any, catalina: "820a3c85fcbb63088b160c7edf125d7e55fc2c5c1d51569304499c9cc4b89ce8"
|
|
sha256 cellar: :any, mojave: "71f0e76c5b22e5088426c971d5e795fe67abee7af6c2c4ae0cf4c0eb98ed21ff"
|
|
sha256 cellar: :any, high_sierra: "dffcffa4ea13e8f0f2b45c5121e529077e135ae9a47254c32182231662ee9b72"
|
|
sha256 cellar: :any, sierra: "bb4d19dc026c2d72c53eed78eaa0ab982e9fcad2cd2acc6d13e7a12ff658e877"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "2beea2c2c372ccf1081e9a5233fc3020470803254284aeecc071249d76b62338"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/stedolan/jq.git", branch: "master"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "oniguruma"
|
|
|
|
def install
|
|
system "autoreconf", "-iv" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--disable-maintainer-mode",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_equal "2\n", pipe_output("#{bin}/jq .bar", '{"foo":1, "bar":2}')
|
|
end
|
|
end
|