6016e36992
Closes #5439. Signed-off-by: ilovezfs <ilovezfs@icloud.com>
21 lines
665 B
Ruby
21 lines
665 B
Ruby
class Calabash < Formula
|
|
desc "XProc (XML Pipeline Language) implementation"
|
|
homepage "http://xmlcalabash.com"
|
|
url "https://github.com/ndw/xmlcalabash1/releases/download/1.1.12-96/xmlcalabash-1.1.12-96.zip"
|
|
sha256 "ad52d7f7c7f75c0adc41ff73fd78ef52e853deeeb2ca4363b1f29c5c4546a291"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "saxon"
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.write_jar_script libexec/"xmlcalabash-#{version}.jar", "calabash", "-Xmx1024m"
|
|
end
|
|
|
|
test do
|
|
# This small XML pipeline (*.xpl) that comes with Calabash
|
|
# is basically its equivalent "Hello World" program.
|
|
system "#{bin}/calabash", "#{libexec}/xpl/pipe.xpl"
|
|
end
|
|
end
|