blob: 01ad1ada86e76df0af190d95f1ab45188582e4d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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"
def install
system "make mac"
bin.install "f3read", "f3write"
end
end
|