diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/apgdiff.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/apgdiff.rb b/Library/Formula/apgdiff.rb new file mode 100644 index 000000000..2d5a903c3 --- /dev/null +++ b/Library/Formula/apgdiff.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Apgdiff <Formula + url 'http://downloads.sourceforge.net/project/apgdiff/apgdiff/apgdiff-1.4/apgdiff-1.4-bin.zip' + homepage 'http://apgdiff.sourceforge.net/' + md5 '6ef287d02b4429d2111140f7fb2d8c29' + + def startup_script +<<-EOS +#!/bin/bash +java -jar "#{libexec}/apgdiff-1.4.jar" "$@" +EOS + end + + def install + libexec.install "apgdiff-1.4.jar" + (bin+'apgdiff').write startup_script + end +end |
