homebrew-core/Formula/ceylon.rb

28 lines
863 B
Ruby
Raw Normal View History

class Ceylon < Formula
desc "Programming language for writing large programs in teams"
homepage "http://ceylon-lang.org/"
url "http://ceylon-lang.org/download/dist/1_1_0"
sha256 "c08a900b13f42c38a38b403d620afd436cd18f2fe9a0942b626254bf4ad821c1"
2014-10-27 03:30:29 +00:00
depends_on :java => "1.7"
def install
rm_f Dir["bin/*.bat"]
man1.install Dir["doc/man/man1/*"]
doc.install Dir["doc/*"]
libexec.install Dir["*"]
2012-02-12 18:53:51 +00:00
# Symlink shell scripts but not args.sh
bin.install_symlink Dir["#{libexec}/bin/ceylon*"]
end
test do
cd "#{libexec}/samples/helloworld" do
system "#{bin}/ceylon", "compile", "--encoding", "UTF-8", "com.example.helloworld"
system "#{bin}/ceylon", "doc", "--encoding", "UTF-8", "--non-shared", "com.example.helloworld"
system "#{bin}/ceylon", "run", "com.example.helloworld/1.1.0", "John"
2012-02-12 18:53:51 +00:00
end
end
end