cf 1.2.5 (new formula)

Closes Homebrew/homebrew#36779.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
master
Matthias Vallentin 2015-02-12 19:11:47 -08:00 committed by Mike McQuaid
parent 96e345a806
commit 346f8e0713
1 changed files with 18 additions and 0 deletions

18
Formula/cf.rb Normal file
View File

@ -0,0 +1,18 @@
class Cf < Formula
homepage "http://ee.lbl.gov"
url "ftp://ee.lbl.gov/cf-1.2.5.tar.gz"
sha1 "0ef0b03c1ea7221d75dac0ce110fd677e1f0182a"
def install
system "./configure", "--prefix=#{prefix}"
system "make"
bin.mkpath
man1.mkpath
system "make", "install"
system "make", "install-man"
end
test do
assert_match /Jan 20 00:35:44/, `echo 1074558944 | #{bin}/cf -u`
end
end