blob: 0c1a076017dbb8efb25e9743aff32f5c3e8dae8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require 'formula'
class Ceylon < Formula
homepage 'http://ceylon-lang.org/'
url 'http://ceylon-lang.org/download/dist/1_1_0'
sha1 '91d84e96f3a4468cc2e7de5a4003d5e945bd7c20'
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['*']
# 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"
end
end
end
|