homebrew-core/Formula/ceylon.rb
Stephane Epardaud 2829bc13f3 ceylon 1.1
Closes Homebrew/homebrew#33064.

Signed-off-by: Tim D. Smith <git@tim-smith.us>
2014-10-11 00:05:47 -07:00

30 lines
812 B
Ruby

require 'formula'
class Ceylon < Formula
homepage 'http://ceylon-lang.org/'
url 'http://ceylon-lang.org/download/dist/1_1_0'
sha1 '91d84e96f3a4468cc2e7de5a4003d5e945bd7c20'
def install
rm_f Dir["bin/*.bat"]
man1.install Dir['doc/man/man1/*']
doc.install Dir['doc/*']
libexec.install Dir['*']
# Symlink shell scripts but not args.sh
bin.install_symlink Dir["#{libexec}/bin/ceylon*"]
end
def caveats
"Ceylon requires Java 7."
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"
end
end
end