homebrew-core/Formula/ballerina.rb

41 lines
1.1 KiB
Ruby

class Ballerina < Formula
desc "Programming Language for Network Distributed Applications"
homepage "https://ballerina.io"
url "https://dist.ballerina.io/downloads/2201.1.0/ballerina-2201.1.0-swan-lake.zip"
sha256 "133ce6e9187144c3f01582f73b8ccd26088226f3b6b8c2c4851a8cb2aae67e95"
license "Apache-2.0"
livecheck do
url "https://ballerina.io/downloads/"
regex(%r{href=.*?/downloads/.*?ballerina[._-]v?(\d+(?:\.\d+)+)\.}i)
end
bottle do
sha256 cellar: :any_skip_relocation, all: "0e15a447dedd276f0cae182b74543825b5f292178c10db4766fffdc30e096f14"
end
depends_on "openjdk@11"
def install
# Remove Windows files
rm Dir["bin/*.bat"]
chmod 0755, "bin/bal"
bin.install "bin/bal"
libexec.install Dir["*"]
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("11"))
end
test do
(testpath/"helloWorld.bal").write <<~EOS
import ballerina/io;
public function main() {
io:println("Hello, World!");
}
EOS
output = shell_output("#{bin}/bal run helloWorld.bal")
assert_equal "Hello, World!", output.chomp
end
end