homebrew-core/Formula/f3.rb
Baptiste Fontaine 8128af48d1 f3: head, manpages & test added
Closes Homebrew/homebrew#35155.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-12-22 00:29:25 -05:00

20 lines
459 B
Ruby

require "formula"
class F3 < Formula
homepage "http://oss.digirati.com.br/f3/"
url "https://github.com/AltraMayor/f3/archive/v3.0.tar.gz"
sha1 "9e0d2ddec98c09be17b5d343bd6d5fac2606a963"
head "https://github.com/AltraMayor/f3.git"
def install
system "make", "mac"
bin.install "f3read", "f3write"
man1.install "f3read.1"
man1.install_symlink "f3read.1" => "f3write.1"
end
test do
system "#{bin}/f3read", testpath
end
end