14 lines
445 B
Ruby
14 lines
445 B
Ruby
class Ivy < Formula
|
|
desc "Agile dependency manager"
|
|
homepage "https://ant.apache.org/ivy/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=ant/ivy/2.4.0/apache-ivy-2.4.0-bin.tar.gz"
|
|
sha256 "7a3d13a80b69d71608191463dfc2a74fff8ef638ce0208e70d54d28ba9785ee9"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
libexec.install Dir["ivy*"]
|
|
doc.install Dir["doc/*"]
|
|
bin.write_jar_script libexec/"ivy-#{version}.jar", "ivy", "$JAVA_OPTS"
|
|
end
|
|
end
|