aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bcrypt.rb
blob: 9dec190d2690570f4f4e60ea6334d7b48c539914 (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