homebrew-core/Formula/hapi-fhir-cli.rb
John Grimes 696b1d0735
hapi-fhir-cli 3.6.0
Closes #34073.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2018-11-16 00:56:58 +08:00

27 lines
947 B
Ruby

class HapiFhirCli < Formula
desc "Command-line interface for the HAPI FHIR library"
homepage "http://hapifhir.io/doc_cli.html"
url "https://github.com/jamesagnew/hapi-fhir/releases/download/v3.6.0/hapi-fhir-3.6.0-cli.zip"
sha256 "1295c5c6a2efea2277f1cadf240550e66c39fad5f7f99005a45bb8290124c6e5"
bottle :unneeded
depends_on :java => "1.8+"
resource "test_resource" do
url "https://github.com/jamesagnew/hapi-fhir/raw/v3.6.0/hapi-fhir-structures-dstu3/src/test/resources/specimen-example.json"
sha256 "4eacf47eccec800ffd2ca23b704c70d71bc840aeb755912ffb8596562a0a0f5e"
end
def install
inreplace "hapi-fhir-cli", /SCRIPTDIR=(.*)/, "SCRIPTDIR=#{libexec}"
libexec.install "hapi-fhir-cli.jar"
bin.install "hapi-fhir-cli"
end
test do
testpath.install resource("test_resource")
system bin/"hapi-fhir-cli", "validate", "--file", "specimen-example.json",
"--fhir-version", "dstu3"
end
end