aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cifer.rb15
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