blob: 501de8103b35eceef8e040ebb78283e45dbe9678 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|