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

class Bcrypt < Formula
  homepage 'http://bcrypt.sourceforge.net'
  url 'http://bcrypt.sourceforge.net/bcrypt-1.1.tar.gz'
  sha1 'fd4c7c83fdc560f143bb0e0a8c9fb7aa57e69698'

  def install
    system "make", "CC=#{ENV.cc}",
                   "CFLAGS=#{ENV.cflags}",
                   "LDFLAGS=-lz"
    bin.install "bcrypt"
    man1.install gzip("bcrypt.1")
  end
end