homebrew-core/Formula/ivy.rb

15 lines
411 B
Ruby
Raw Normal View History

require 'formula'
class Ivy < Formula
homepage 'http://ant.apache.org/ivy/'
url 'http://www.apache.org/dyn/closer.cgi?path=ant/ivy/2.3.0-rc1/apache-ivy-2.3.0-rc1-bin.tar.gz'
sha1 '6cdb7b8131ca3b13b0b6b43988f3ab92da2de6e7'
version '2.3.0-rc1'
def install
libexec.install Dir['ivy*']
doc.install Dir['doc/*']
2012-08-07 18:20:52 +00:00
bin.write_jar_script libexec/'ivy-2.3.0-rc1.jar', 'ivy', '$JAVA_OPTS'
end
end