d913e4a93a
Closes #7123. Signed-off-by: William Woodruff <william@tuffbizz.com>
31 lines
1 KiB
Ruby
31 lines
1 KiB
Ruby
class Ceylon < Formula
|
|
desc "Programming language for writing large programs in teams"
|
|
homepage "https://ceylon-lang.org/"
|
|
url "https://ceylon-lang.org/download/dist/1_3_1"
|
|
sha256 "3bbc58fd00ead7cc43bb49d54d11a95db9d6ead4799aecab108e290c3b890159"
|
|
revision 1
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.7+"
|
|
|
|
def install
|
|
man1.install Dir["doc/man/man1/*"]
|
|
doc.install Dir["doc/*"]
|
|
libexec.install Dir["*"]
|
|
|
|
# Symlink shell scripts but not *.plugin
|
|
bin.install_symlink "#{libexec}/bin/ceylon"
|
|
bin.install_symlink "#{libexec}/bin/ceylon-sh-setup"
|
|
end
|
|
|
|
test do
|
|
ENV.java_cache
|
|
|
|
cd "#{libexec}/samples/helloworld" do
|
|
system "#{bin}/ceylon", "compile", "--out", "#{testpath}/modules", "--encoding", "UTF-8", "com.example.helloworld"
|
|
system "#{bin}/ceylon", "doc", "--out", "#{testpath}/modules", "--encoding", "UTF-8", "--non-shared", "com.example.helloworld"
|
|
system "#{bin}/ceylon", "run", "--rep", "#{testpath}/modules", "com.example.helloworld/1.0", "John"
|
|
end
|
|
end
|
|
end
|