blob: 936451a6ccfdc3167aad43f0fe12efc893b99652 (
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 'https://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
 |