blob: b6f8817153c886bb64f0586a2a697958376cb3ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Fastjar < Formula
url 'https://downloads.sourceforge.net/project/fastjar/fastjar/0.94/fastjar-0.94.tar.gz'
homepage 'http://sourceforge.net/projects/fastjar/'
sha1 '2b54b558bed1acef63455b27827b69e83c823f8d'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def test
system "#{bin}/fastjar", "-V"
system "#{bin}/grepjar", "-V"
end
end
|