aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jython.rb
blob: 135d54522f4c1b07a1b291c84611c39fe6372307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Jython < Formula
  homepage 'http://www.jython.org'
  url "http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.5.3/jython-installer-2.5.3.jar"
  sha1 '6b6ac4354733b6d68d51acf2f3d5c823a10a4ce4'

  devel do
    url "http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7-b1/jython-installer-2.7-b1.jar"
    sha1 '385a52a8a3c5d941d61a7b2ed76e8a351b3658f2'
  end

  def install
    system "java", "-jar", cached_download, "-s", "-d", libexec
    bin.install_symlink libexec/'bin/jython'
  end
end