45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
class Ballerina < Formula
|
|
desc "The flexible, powerful and beautiful programming language"
|
|
homepage "https://ballerina.io/"
|
|
url "https://product-dist.ballerina.io/downloads/0.981.0/ballerina-platform-0.981.0.zip"
|
|
sha256 "0f9bc7c5e2061b36faee0afff2926592642015af61b4266e6bbec6935652e0c3"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.8"
|
|
|
|
def install
|
|
# Remove Windows files
|
|
rm Dir["bin/*.bat"]
|
|
|
|
chmod 0755, "bin/ballerina"
|
|
chmod 0755, "bin/composer"
|
|
|
|
inreplace ["bin/ballerina"] do |s|
|
|
s.gsub! /^BALLERINA_HOME=.*$/, "BALLERINA_HOME=#{libexec}"
|
|
s.gsub! /\r?/, ""
|
|
end
|
|
|
|
inreplace ["bin/composer"] do |s|
|
|
s.gsub! /^BASE_DIR=.*$/, "BASE_DIR=#{libexec}/bin"
|
|
s.gsub! /^PRGDIR=.*$/, "PRGDIR=#{libexec}/bin"
|
|
s.gsub! /\r?/, ""
|
|
end
|
|
|
|
bin.install "bin/ballerina", "bin/composer"
|
|
libexec.install Dir["*"]
|
|
lib.install_symlink libexec/"lib/resources"
|
|
bin.env_script_all_files(libexec/"bin", Language::Java.java_home_env("1.8"))
|
|
end
|
|
|
|
test do
|
|
(testpath/"helloWorld.bal").write <<~EOS
|
|
import ballerina/io;
|
|
function main(string... args) {
|
|
io:println("Hello, World!");
|
|
}
|
|
EOS
|
|
output = shell_output("#{bin}/ballerina run helloWorld.bal")
|
|
assert_equal "Hello, World!", output.chomp
|
|
end
|
|
end
|