From 7932776cf5790b0e3530050bbbe192e757109902 Mon Sep 17 00:00:00 2001 From: Michael Dvorkin Date: Fri, 29 May 2015 19:31:18 -0700 Subject: [PATCH] Homebrew installation formula --- homebrew/mop.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homebrew/mop.rb b/homebrew/mop.rb index bbaa96c..a4f2893 100644 --- a/homebrew/mop.rb +++ b/homebrew/mop.rb @@ -9,8 +9,8 @@ class Mop < Formula depends_on "go" => :build def install - end - - def caveats + system "go", "get", "github.com/michaeldv/termbox-go" + system "go build cmd/mop.go" + bin.install "mop" end end