homebrew-core/Formula/watch.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

13 lines
305 B
Ruby

require 'formula'
class Watch <Formula
homepage 'http://procps.sourceforge.net/'
url 'http://procps.sourceforge.net/procps-3.2.8.tar.gz'
md5 '9532714b6846013ca9898984ba4cd7e0'
def install
system "make", "watch", "PKG_LDFLAGS=-Wl"
bin.install "watch"
man1.install "watch.1"
end
end