blob: cd43685d68bbf01d5e7d68d1439aec4f3ede006c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Apgdiff < Formula
homepage 'http://apgdiff.startnet.biz/index.php'
url 'http://apgdiff.startnet.biz/download/apgdiff-2.4-bin.zip'
mirror 'http://downloads.sourceforge.net/project/apgdiff/apgdiff/apgdiff-2.4/apgdiff-2.4-bin.zip'
sha1 '1150d44e9da2c1417767d4106bdb297ed0adfed8'
def install
libexec.install "apgdiff-2.4.jar"
bin.write_jar_script libexec/"apgdiff-2.4.jar", "apgdiff"
end
end
|