aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/john.rb
blob: a57ffd83a2fe866c09c90f1f0afcd53edfcc6cc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
require 'formula'

class John < Formula
  url 'http://www.openwall.com/john/g/john-1.7.8.tar.bz2'
  homepage 'http://www.openwall.com/john/'
  md5 'e6d7f261829610d6949c706ebac0517c'

  def patches
    { :p0 => DATA }
  end

  fails_with_llvm :build => 2334

  def install
    ENV.deparallelize
    arch = Hardware.is_64_bit? ? '64' : 'sse2'

    Dir.chdir 'src' do
      system "make clean macosx-x86-#{arch}"
    end

    rm 'README'
    # using mv over bin.install due to problem moving sym links
    mv 'run', bin
    chmod_R 0755, bin
  end
end


__END__
--- src/john.c.orig	2010-01-01 22:58:55.000000000 -0500
+++ src/john.c	2010-01-01 22:59:11.000000000 -0500
@@ -249,7 +249,7 @@ static void john_init(char *name, int ar
 		cfg_init(CFG_PRIVATE_ALT_NAME, 1);
 #endif
 		cfg_init(CFG_FULL_NAME, 1);
-		cfg_init(CFG_ALT_NAME, 0);
+		cfg_init(CFG_ALT_NAME, 1);
 	}
 
 	status_init(NULL, 1);