From f47eaef823860e8b33add1f64665bb6c0ef98ced Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Thu, 14 Aug 2014 14:49:48 -0700 Subject: [PATCH] Add Coreutils Viewer --- cv.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cv.rb diff --git a/cv.rb b/cv.rb new file mode 100644 index 0000000..423ad97 --- /dev/null +++ b/cv.rb @@ -0,0 +1,10 @@ +require "formula" + +class Cv < Formula + head "https://github.com/BestPig/cv.git" + + def install + system "make" + system "make", "install" + end +end