homebrew-core/Formula/sbjson.rb

49 lines
1.6 KiB
Ruby

class Sbjson < Formula
desc "JSON CLI parser & reformatter based on SBJson v5"
homepage "https://github.com/SBJson/SBJson"
url "https://github.com/SBJson/SBJson/archive/v5.0.3.tar.gz"
sha256 "9a03f6643b42a82300f4aefcfb6baf46cc2c519f1bb7db3028f338d6d1c56f1b"
license "BSD-3-Clause"
head "https://github.com/SBJson/SBJson.git", branch: "trunk"
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "d3cb04de93bf5460c41623c296b5cd81884379d277afc874a64b0ff1cc34ac6a"
sha256 cellar: :any_skip_relocation, big_sur: "695ced76533bfe9a4e893ffe22ea58402dbd93bd180e2ca4b4a96004d5c60581"
sha256 cellar: :any_skip_relocation, catalina: "e703b87ff205bfec1cfc09e9c200ebca6be643df15ec99b85c590110a4885fb2"
sha256 cellar: :any_skip_relocation, mojave: "8b145bcfef84733c00d94e57cbe0eac56a7981654cda6068ff219264353b25bd"
sha256 cellar: :any_skip_relocation, high_sierra: "649463e051c03596a72400a04b95f993222f5ba6d42a879241291660fef8605c"
end
depends_on xcode: :build
depends_on :macos
def install
xcodebuild "-project", "SBJson5.xcodeproj",
"-target", "sbjson",
"-configuration", "Release",
"clean",
"build",
"SYMROOT=build"
bin.install "build/Release/sbjson"
end
test do
(testpath/"in.json").write <<~EOS
[true,false,"string",42.001e3,[],{}]
EOS
(testpath/"unwrapped.json").write <<~EOS
true
false
"string"
42001
[]
{}
EOS
assert_equal shell_output("cat unwrapped.json"),
shell_output("#{bin}/sbjson --unwrap-root in.json")
end
end