aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/crunch.rb
blob: a9194ff6c6b527b3c2b2421d34b7658ad4ffd244 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "formula"

class Crunch < Formula
  homepage "http://sourceforge.net/projects/crunch-wordlist"
  url "https://downloads.sourceforge.net/project/crunch-wordlist/crunch-wordlist/crunch-3.6.tgz"
  sha1 "51bdf8b9dfb9e4486fa6a85e0224522569de4557"

  def install
    system "make", "CC=#{ENV.cc}", "LFS=-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"

    bin.install "crunch"
    man1.install "crunch.1"
    share.install Dir["*.lst"]
  end
end