aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ceylon.rb
diff options
context:
space:
mode:
authorJulien Ponge2011-12-22 19:10:24 +0100
committerAdam Vandenberg2012-01-28 20:55:57 -0800
commit56bf3e78bc35081819646ad47df7084024ce43aa (patch)
treecf3ec5b7f2d1ed2d6a713f82c6c4268502809bb3 /Library/Formula/ceylon.rb
parentfcf1450b281c33cd2e7e4dac4f858b10b4e21640 (diff)
downloadhomebrew-56bf3e78bc35081819646ad47df7084024ce43aa.tar.bz2
Ceylon 1.0.M1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ceylon.rb')
-rw-r--r--Library/Formula/ceylon.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/ceylon.rb b/Library/Formula/ceylon.rb
new file mode 100644
index 000000000..e4886f9b4
--- /dev/null
+++ b/Library/Formula/ceylon.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class Ceylon < Formula
+ url 'http://ceylon-lang.org/download/dist/1_0_Milestone1'
+ homepage 'http://ceylon-lang.org/'
+ md5 '627ebfc52fc9ba93fc63df59f8309509'
+ version '1.0.M1'
+
+ def install
+ rm_f Dir["bin/*.bat"]
+
+ doc.install Dir['doc/*']
+ libexec.install Dir['*']
+
+ bin.mkpath
+ Dir["#{libexec}/bin/*"].each { |f| ln_s f, bin }
+ end
+end