Ticket #23305: Portfile

File Portfile, 1.9 KB (added by stefan.van.der.eijk@…, 14 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4
2# $Id: Portfile 54316 2009-07-24 19:38:59Z snc@macports.org $
3
4PortSystem                      1.0
5
6name                            crswallow
7version                         0.2
8revision                        1
9categories                      sysutils
10platforms                       darwin
11maintainers                     gmail.com:stefan.van.der.eijk openmaintainer
12
13description                     crswallow processes text lines passed in from stdin and forwards most of them to stdout/stderr.
14long_description                This software is a text filter for Linux/Unix environments. It processes text lines passed in from \
15stdin and forwards most of them to stdout/stderr. \
16Text lines which contain the carriage return character (cr) are often used by software to print progress information \
17on a text console. They repeatedly update a single line on screen with the latest status. One example of such a software \
18is the video encoding software mencoder. \
19Some tools update the status very often, e.g. mencoder may do so several hundred times per second. \
20Such output can be very disturbing when running software over a remote terminal connection with low \
21bandwidth. Completely filtering such output is often not an opttion for jobs running over an extended \
22period of time, because a limited amount of progress information is still desirable. \
23The crswallow filter can limit status output to a single update in a given time interval, for example \
24once per second.
25                               
26homepage                        http://code.google.com/p/crswallow/
27master_sites                    http://crswallow.googlecode.com/files/
28
29checksums           md5     f1a751c0ea8891ec1682d4ea209fc3b0 \
30                    sha1    96701106de01db3e4b46e799ff23b8537019410c \
31                    rmd160  781d40d2fd00eafdbe9076ec9dfbf40670beef2e
32
33worksrcdir                      ${name}
34use_configure                   no
35build.target                    ${name}
36
37destroot {
38file mkdir -p ${destroot}${prefix}/bin
39xinstall ${worksrcpath}/${name} ${destroot}${prefix}/bin/
40}