dwatch: style nits

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Jack Nagel 2012-05-06 00:30:07 -05:00
parent 5c1da0e211
commit 56a897a281

View file

@ -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