diff options
| author | Garrett Barboza | 2012-02-19 13:37:16 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-25 18:29:47 -0700 |
| commit | c9dc25798f9368f99478b254e1edfee08b9f6add (patch) | |
| tree | e269a0e6a882e8677606382cc985244a2fa0e956 /Library | |
| parent | 00e7901d0e6072e3b3f8b435ad3ba8b77fb94d1e (diff) | |
| download | homebrew-c9dc25798f9368f99478b254e1edfee08b9f6add.tar.bz2 | |
cifer 1.2.0
cifer is a multipurpose classical cryptanalysis and codeābreaking tool
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/cifer.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/cifer.rb b/Library/Formula/cifer.rb new file mode 100644 index 000000000..b84dd272d --- /dev/null +++ b/Library/Formula/cifer.rb @@ -0,0 +1,15 @@ +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 |
