2011-12-22 18:10:24 +00:00
|
|
|
class Ceylon < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Programming language for writing large programs in teams"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://ceylon-lang.org/"
|
2015-10-29 00:07:48 +00:00
|
|
|
url "http://ceylon-lang.org/download/dist/1_2_0"
|
|
|
|
sha256 "2e3b50e3e80ea3a356d0d62a2cff5b59104c591aa06387e55cd34a10d52c2919"
|
2011-12-22 18:10:24 +00:00
|
|
|
|
2015-10-22 13:11:12 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2015-10-28 00:04:04 +00:00
|
|
|
depends_on :java => "1.7+"
|
2014-10-27 03:30:29 +00:00
|
|
|
|
2011-12-22 18:10:24 +00:00
|
|
|
def install
|
|
|
|
rm_f Dir["bin/*.bat"]
|
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
man1.install Dir["doc/man/man1/*"]
|
|
|
|
doc.install Dir["doc/*"]
|
|
|
|
libexec.install Dir["*"]
|
2011-12-22 18:10:24 +00:00
|
|
|
|
2015-10-29 00:07:48 +00:00
|
|
|
# Symlink shell scripts but not *.plugin
|
|
|
|
bin.install_symlink "#{libexec}/bin/ceylon"
|
|
|
|
bin.install_symlink "#{libexec}/bin/ceylon-sh-setup"
|
2012-02-12 18:53:51 +00:00
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2015-10-28 00:04:04 +00:00
|
|
|
ENV["_JAVA_OPTIONS"] = "-Duser.home=#{testpath}"
|
2012-02-21 06:04:21 +00:00
|
|
|
cd "#{libexec}/samples/helloworld" do
|
2015-10-28 00:04:04 +00:00
|
|
|
system "#{bin}/ceylon", "compile", "--out", "#{testpath}/modules", "--encoding", "UTF-8", "com.example.helloworld"
|
|
|
|
system "#{bin}/ceylon", "doc", "--out", "#{testpath}/modules", "--encoding", "UTF-8", "--non-shared", "com.example.helloworld"
|
2015-10-29 00:07:48 +00:00
|
|
|
system "#{bin}/ceylon", "run", "--rep", "#{testpath}/modules", "com.example.helloworld/1.2.0", "John"
|
2012-02-12 18:53:51 +00:00
|
|
|
end
|
2011-12-22 18:10:24 +00:00
|
|
|
end
|
|
|
|
end
|