blob: c7d8190a6efe371beed65cf8573afc1419c432f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Jython <Formula
url 'http://downloads.sourceforge.net/project/jython/jython/2.5.1/jython_installer-2.5.1.jar'
homepage 'http://www.jython.org'
md5 '2ee978eff4306b23753b3fe9d7af5b37'
def download_strategy
NoUnzipCurlDownloadStrategy # Don't unzip jar.
end
def install
system "java", "-jar", "jython_installer-2.5.1.jar", "-s", "-d", prefix
end
end
|