New formula: fastjar
An implementation of Sun's jar utility in C. Closes Homebrew/homebrew#8307. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
parent
2c2ba2955d
commit
926f4e3609
1 changed files with 18 additions and 0 deletions
18
Formula/fastjar.rb
Normal file
18
Formula/fastjar.rb
Normal file
|
@ -0,0 +1,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/'
|
||||
md5 '14d4bdfac236e347d806c6743dba48c6'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
|
||||
def test
|
||||
system "fastjar -V"
|
||||
system "grepjar -V"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue