2014-06-21 20:22:31 +00:00
|
|
|
require "formula"
|
2012-01-12 22:13:11 +00:00
|
|
|
|
|
|
|
class F3 < Formula
|
2014-06-21 20:22:31 +00:00
|
|
|
homepage "http://oss.digirati.com.br/f3/"
|
|
|
|
url "https://github.com/AltraMayor/f3/archive/v3.0.tar.gz"
|
|
|
|
sha1 "9e0d2ddec98c09be17b5d343bd6d5fac2606a963"
|
2012-01-12 22:13:11 +00:00
|
|
|
|
2014-12-20 20:33:42 +00:00
|
|
|
head "https://github.com/AltraMayor/f3.git"
|
|
|
|
|
2014-12-22 00:48:32 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "939ab204d6e1ff0be2c487fd6cce4ba5bcad66f7" => :yosemite
|
|
|
|
sha1 "6ae3660786be6daa0641bbaaae7b7e66fc5f5886" => :mavericks
|
|
|
|
sha1 "f83fb9c34469ea937f51874a70f3ec94d48980db" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2012-01-12 22:13:11 +00:00
|
|
|
def install
|
2014-12-20 20:33:42 +00:00
|
|
|
system "make", "mac"
|
2014-06-21 20:22:31 +00:00
|
|
|
bin.install "f3read", "f3write"
|
2014-12-20 20:33:42 +00:00
|
|
|
man1.install "f3read.1"
|
|
|
|
man1.install_symlink "f3read.1" => "f3write.1"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/f3read", testpath
|
2012-01-12 22:13:11 +00:00
|
|
|
end
|
|
|
|
end
|