aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bcrypt.rb
blob: 86b3a2c6babb2a16eb033728b6de1833203c56b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Bcrypt <Formula
  url 'http://bcrypt.sourceforge.net/bcrypt-1.1.tar.gz'
  homepage 'http://bcrypt.sourceforge.net'
  md5 '8ce2873836ccd433329c8df0e37e298c'

  def install
    inreplace "Makefile" do |s|
      s.change_make_var! "CC", ENV.cc
      s.change_make_var! "CFLAGS", ENV['CFLAGS']
      s.change_make_var! "LDFLAGS", "-lz"
    end
    
    system "make"
    bin.install "bcrypt"
    man1.install gzip("bcrypt.1")
  end
end