blob: 23ee86032bb1168bd1105d88a9ec8266db69c604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'
sha1 'dba2abbd672cd072c01f91a923e0830c009b66f2'
def install
system "make", "prefix=#{prefix}",
"CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"LDFLAGS=#{ENV.ldflags}",
"install"
end
end
|