homebrew-core/Formula/fcrackzip.rb

15 lines
413 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Fcrackzip < Formula
homepage 'http://oldhome.schmorp.de/marc/fcrackzip.html'
2013-01-27 23:07:38 +00:00
url 'http://oldhome.schmorp.de/marc/data/fcrackzip-1.0.tar.gz'
sha1 '92e4f8caa880c55b20e13feb7a25c8b8fd3accf8'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end