1 | # $Id: Portfile 58470 2009-09-29 07:49:37Z ryandesign@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name watch |
---|
5 | version 3.2.8 |
---|
6 | categories sysutils |
---|
7 | maintainers yahoo.com:mjhsieh |
---|
8 | description watch executes a program periodically, showing output fullscreen |
---|
9 | long_description watch is like "top" for arbitrary commands. It runs \ |
---|
10 | command repeatedly, displaying its output (the first \ |
---|
11 | screen full). This allows you to watch the program \ |
---|
12 | output change over time. This is part of the linux \ |
---|
13 | "procps" package |
---|
14 | |
---|
15 | homepage http://sourceforge.net/projects/procps/ |
---|
16 | master_sites http://procps.sourceforge.net/ |
---|
17 | distname procps-${version} |
---|
18 | platforms darwin |
---|
19 | checksums md5 9532714b6846013ca9898984ba4cd7e0 \ |
---|
20 | sha1 a0c86790569dec26b5d9037e8868ca907acc9829 |
---|
21 | |
---|
22 | use_configure no |
---|
23 | |
---|
24 | depends_lib port:ncurses |
---|
25 | |
---|
26 | build.target watch |
---|
27 | build.args CC=${configure.cc} \ |
---|
28 | PKG_LDFLAGS="" |
---|
29 | |
---|
30 | destroot { |
---|
31 | xinstall -m 0755 ${worksrcpath}/watch ${destroot}${prefix}/bin |
---|
32 | xinstall -m 0644 ${worksrcpath}/watch.1 \ |
---|
33 | ${destroot}${prefix}/share/man/man1 |
---|
34 | } |
---|