diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/f3.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Library/Formula/f3.rb b/Library/Formula/f3.rb index 01ad1ada8..388917272 100644 --- a/Library/Formula/f3.rb +++ b/Library/Formula/f3.rb @@ -5,8 +5,16 @@ class F3 < Formula 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" + 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 |
