homebrew-core/Formula/ceylon.rb
Tako Schotanus 37ce40b8d1 ceylon: .bat file is needed for Ceylon Bootstrap.
Before we would delete any Windows batch files because we didn't need
them for the Mac (of course). But since 1.2.2 we have a `ceylon
bootstrap` command which works like `gradle wrapper` in providing a
very simple way for people to distribute Ceylon projects to people who
don't have Ceylon installed. It generates two scripts, `ceylonb` for
the unices and `ceylonb.bat` for Windows. Users on any OS can run these
scripts and they will automatically install Ceylon if necessary. So
even if the file will never be used on a Mac it needs to be available
so the `ceylon bootstrap` command can *copy* it (it will never be
executed of course for obvious reasons).

Closes Homebrew/homebrew#50045.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-03-14 19:39:44 +08:00

31 lines
1 KiB
Ruby

class Ceylon < Formula
desc "Programming language for writing large programs in teams"
homepage "http://ceylon-lang.org/"
url "http://ceylon-lang.org/download/dist/1_2_2"
sha256 "68a7d56b2d3eca83f8832ef1a2e0e58124a71c3c9fc0cda7c377e4882b4feedb"
revision 1
bottle :unneeded
depends_on :java => "1.7+"
def install
man1.install Dir["doc/man/man1/*"]
doc.install Dir["doc/*"]
libexec.install Dir["*"]
# Symlink shell scripts but not *.plugin
bin.install_symlink "#{libexec}/bin/ceylon"
bin.install_symlink "#{libexec}/bin/ceylon-sh-setup"
end
test do
ENV.java_cache
cd "#{libexec}/samples/helloworld" do
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"
system "#{bin}/ceylon", "run", "--rep", "#{testpath}/modules", "com.example.helloworld/1.0", "John"
end
end
end