bf251f1a73
Closes Homebrew/homebrew#18465. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
30 lines
746 B
Ruby
30 lines
746 B
Ruby
require 'formula'
|
|
|
|
class Ceylon < Formula
|
|
homepage 'http://ceylon-lang.org/'
|
|
url 'http://ceylon-lang.org/download/dist/1_0_Milestone5'
|
|
version '1.0M5'
|
|
sha1 'c013ce50ce2505f0b85fc18c9bf2ce8f13fca0ae'
|
|
|
|
def install
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
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
|
|
|
|
def test
|
|
cd "#{libexec}/samples/helloworld" do
|
|
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"
|
|
end
|
|
end
|
|
end
|