aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/f3.rb
diff options
context:
space:
mode:
authorBaptiste Fontaine2014-12-20 21:33:42 +0100
committerJack Nagel2014-12-22 00:29:25 -0500
commitfa5839f4afc6dca940fc251ce58d38d364dc050a (patch)
tree1473a7d90ad0222887931f2be3e97a653d820c00 /Library/Formula/f3.rb
parent05ba503406293ef93f2874ec05867eed3895d75f (diff)
downloadhomebrew-fa5839f4afc6dca940fc251ce58d38d364dc050a.tar.bz2
f3: head, manpages & test added
Closes #35155. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/f3.rb')
-rw-r--r--Library/Formula/f3.rb10
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