2011-12-22 18:10:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ceylon < Formula
|
|
|
|
homepage 'http://ceylon-lang.org/'
|
2014-10-09 19:15:38 +00:00
|
|
|
url 'http://ceylon-lang.org/download/dist/1_1_0'
|
|
|
|
sha1 '91d84e96f3a4468cc2e7de5a4003d5e945bd7c20'
|
2011-12-22 18:10:24 +00:00
|
|
|
|
2014-10-27 03:30:29 +00:00
|
|
|
depends_on :java => "1.7"
|
|
|
|
|
2011-12-22 18:10:24 +00:00
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
|
2013-11-11 15:58:15 +00:00
|
|
|
man1.install Dir['doc/man/man1/*']
|
2011-12-22 18:10:24 +00:00
|
|
|
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
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-02-21 06:04:21 +00:00
|
|
|
cd "#{libexec}/samples/helloworld" do
|
2014-10-09 19:15:38 +00:00
|
|
|
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
|
2011-12-22 18:10:24 +00:00
|
|
|
end
|
|
|
|
end
|