aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJan Berkel2011-02-09 15:09:20 +0100
committerAdam Vandenberg2011-03-30 22:58:48 -0700
commit68605c66a9f074df4b68a0e1b583c221d54d2dd9 (patch)
tree9091c587f53ae574c3f518108635a1a1e5ccc2ce /Library/Formula
parent9c653ab5ff20c3ff70afe9a50772973d31c60bf6 (diff)
downloadhomebrew-68605c66a9f074df4b68a0e1b583c221d54d2dd9.tar.bz2
Proguard 4.6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/proguard.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/proguard.rb b/Library/Formula/proguard.rb
new file mode 100644
index 000000000..921d5215d
--- /dev/null
+++ b/Library/Formula/proguard.rb
@@ -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