homebrew-core/Formula/cifer.rb
Garrett Barboza 975231677b cifer 1.2.0
cifer is a multipurpose classical cryptanalysis and code‐breaking tool

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-25 18:29:47 -07:00

15 lines
414 B
Ruby

require 'formula'
class Cifer < Formula
homepage 'http://code.google.com/p/cifer/'
url 'http://cifer.googlecode.com/files/cifer-1.2.0.tar.gz'
md5 '6fba4f27b09722ea07524e940c1e923f'
def install
system "make", "prefix=#{prefix}",
"CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"LDFLAGS=#{ENV.ldflags}",
"install"
end
end