homebrew-core/Formula/ceylon.rb

32 lines
1 KiB
Ruby
Raw Normal View History

class Ceylon < Formula
desc "Programming language for writing large programs in teams"
2016-10-10 21:58:44 +00:00
homepage "https://ceylon-lang.org/"
2016-11-19 02:40:45 +00:00
url "https://ceylon-lang.org/download/dist/1_3_1"
sha256 "3bbc58fd00ead7cc43bb49d54d11a95db9d6ead4799aecab108e290c3b890159"
revision 1
2015-10-22 13:11:12 +00:00
bottle :unneeded
depends_on :java => "1.7+"
2014-10-27 03:30:29 +00:00
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"
2012-02-12 18:53:51 +00:00
end
test do
2015-12-18 23:41:12 +00:00
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"
2012-02-12 18:53:51 +00:00
end
end
end