Proguard 4.6

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jan Berkel 2011-02-09 15:09:20 +01:00 committed by Adam Vandenberg
parent 098374aba3
commit 13c50bcd8f
1 changed files with 15 additions and 0 deletions

15
Formula/proguard.rb Normal file
View File

@ -0,0 +1,15 @@
require 'formula'
class Proguard < Formula
url 'http://downloads.sourceforge.net/project/proguard/proguard/4.6/proguard4.6.tar.gz'
homepage 'http://proguard.sourceforge.net/'
md5 '4c2f225d996349e3cf705b4aa671a6cb'
def install
libexec.install ['lib/proguard.jar']
(bin/:proguard).write <<-EOS.undent
#!/bin/sh
java -jar #{libexec}/proguard.jar $*
EOS
end
end