blob: b087137081e9695a2b66e629081c362d3845549f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require 'formula'
class Jython < Formula
  homepage 'http://www.jython.org'
  url "http://downloads.sourceforge.net/project/jython/jython/2.5.2/jython_installer-2.5.2.jar",
    :using => :nounzip
  sha1 'd4534a691edf40aa1d51723dfe3e22db1e39b432'
  def install
    system "java", "-jar", "jython_installer-2.5.2.jar", "-s", "-d", libexec
    bin.install_symlink libexec+'bin/jython'
  end
end
 |