7d896343f9
Remove devel jython version Replace sha1 signature with sha256 Remove inreplace command Closes Homebrew/homebrew#39380. Signed-off-by: Tim D. Smith <git@tim-smith.us>
10 lines
385 B
Ruby
10 lines
385 B
Ruby
class Jython < Formula
|
|
homepage "http://www.jython.org"
|
|
url "https://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7.0/jython-installer-2.7.0.jar"
|
|
sha256 "b44352ece72382268a60e2848741c96609a91d796bb9a9c6ebeff62f0c12c9cf"
|
|
|
|
def install
|
|
system "java", "-jar", cached_download, "-s", "-d", libexec
|
|
bin.install_symlink libexec/"bin/jython"
|
|
end
|
|
end
|