Ticket #1754: Portfile

File Portfile, 942 bytes (added by mjhsieh@…, 20 years ago)

Portfile of sysutils/linux-watch

Line 
1# $Id: $
2
3PortSystem 1.0
4name            linux-watch
5version         3.2.2
6categories      sysutils
7maintainers     mjhsieh@yahoo.com
8description     WATCH executes a program periodically, showing output fullscreen
9long_description        Watch is like "top" for arbitrary commands \
10                It runs command repeatedly, displaying its output (the first screen-\
11                full).   This  allows you to watch the program output change over time.\
12                This is part of the  linux "procps" package
13master_sites    http://www.life.nthu.edu.tw/~mjhsieh/src
14homepage        http://sourceforge.net/projects/procps/
15distname        ${portname}-${portversion}
16platforms       darwin
17checksums       md5 70f0903d72015d64e1946554b60c81d2
18configure       {}
19destroot        {
20        xinstall -d -m 0755 ${destroot}${prefix}/bin
21        xinstall -d -m 0755 ${destroot}${prefix}/share/man/man1
22        xinstall -m 0755 ${worksrcpath}/watch ${destroot}${prefix}/bin
23        xinstall -m 0644 ${worksrcpath}/watch.1 ${destroot}${prefix}/share/man/man1
24}