2011-12-22 18:10:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ceylon < Formula
|
|
|
|
homepage 'http://ceylon-lang.org/'
|
2013-03-13 21:46:17 +00:00
|
|
|
url 'http://ceylon-lang.org/download/dist/1_0_Milestone5'
|
|
|
|
version '1.0M5'
|
|
|
|
sha1 'c013ce50ce2505f0b85fc18c9bf2ce8f13fca0ae'
|
2011-12-22 18:10:24 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-06-25 15:23:52 +00:00
|
|
|
def caveats
|
|
|
|
"Ceylon requires Java 7."
|
|
|
|
end
|
|
|
|
|
2012-02-12 18:53:51 +00:00
|
|
|
def test
|
2012-02-21 06:04:21 +00:00
|
|
|
cd "#{libexec}/samples/helloworld" do
|
2012-10-29 16:22:24 +00:00
|
|
|
system "#{bin}/ceylon", "compile", "com.acme.helloworld"
|
|
|
|
system "#{bin}/ceylon", "doc", "--non-shared", "com.acme.helloworld"
|
|
|
|
system "#{bin}/ceylon", "run", "com.acme.helloworld/1.0.0", "John"
|
2012-02-12 18:53:51 +00:00
|
|
|
end
|
2011-12-22 18:10:24 +00:00
|
|
|
end
|
|
|
|
end
|