2013-11-06 15:12:35 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Crunch < Formula
|
|
|
|
homepage 'http://sourceforge.net/projects/crunch-wordlist'
|
2014-03-02 11:00:02 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/crunch-wordlist/crunch-wordlist/crunch-3.5.tgz'
|
2014-01-16 06:49:05 +00:00
|
|
|
sha1 '9caa1727d81f178805815a63e8d72736b750210c'
|
2013-11-06 15:12:35 +00:00
|
|
|
|
|
|
|
def install
|
2013-12-03 10:57:46 +00:00
|
|
|
system "make", "CC=#{ENV.cc}", "LFS=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
2013-11-06 15:12:35 +00:00
|
|
|
|
|
|
|
bin.install "crunch"
|
|
|
|
man1.install "crunch.1"
|
|
|
|
share.install Dir["*.lst"]
|
|
|
|
end
|
|
|
|
end
|