975231677b
cifer is a multipurpose classical cryptanalysis and code‐breaking tool Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
414 B
Ruby
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
|