aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dwatch.rb15
1 files changed, 11 insertions, 4 deletions
diff --git a/Library/Formula/dwatch.rb b/Library/Formula/dwatch.rb
index 6856832a4..75b4a445f 100644
--- a/Library/Formula/dwatch.rb
+++ b/Library/Formula/dwatch.rb
@@ -6,14 +6,21 @@ class Dwatch < Formula
md5 '25c06240cb5ab8126badc8a78dcd2b79'
def install
- bin.mkpath # Makefile uses cp, not install
- man1.mkpath # ditto
+ # Makefile uses cp, not install
+ bin.mkpath
+ man1.mkpath
+
+ system "make", "install",
+ "CC=#{ENV.cc}",
+ "PREFIX=#{prefix}",
+ "MANDIR=#{man}",
+ "ETCDIR=#{etc}"
- system "make install CC=#{ENV.cc} PREFIX=#{prefix} MANDIR=#{man} ETCDIR=#{etc}"
etc.install "dwatch.conf"
end
def test
- system "dwatch -h" # not that it HAS -h. bitches, but exits 0
+ # '-h' is not actually an option, but it exits 0
+ system "#{bin}/dwatch -h"
end
end