Ticket #51581: Portfile

File Portfile, 1.6 KB (added by juergennagel, 8 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup                       github 1.0
6
7name                prettyping
8version             1.0.0
9categories          net
10platforms           darwin
11license             MIT
12maintainers         nomaintainer
13supported_archs     noarch
14description         prettyping is a wrapper around the standard ping tool with the objective of making the output prettier, more colorful, more compact, and easier to read.
15long_description    prettyping is a wrapper around the standard ping tool with the objective of making the output prettier, more colorful, more compact, and easier to read. \
16                    prettyping runs the standard ping in the background and parses its output, showing the ping responses in a graphical way at the terminal (by using colors and Unicode characters). \
17                    prettyping is written in bash and awk, and is reported to work on many different systems (Linux, Mac OS X, BSD), as well as running on different versions of awk (gawk, mawk, nawk, busybox awk).
18homepage            http://denilsonsa.github.io/prettyping/
19master_sites        https://github.com/denilsonsa/prettyping/archive
20checksums           rmd160 caf8ed61b767c96b305bfe90c5624e84a0e43c7e \
21                    sha256 02a4144ff2ab7d3e2c7915041225270e96b04ee97777be905d1146e76084805d
22git.url                         https://github.com/denilsonsa/prettyping.git
23fetch.type                      git
24use_configure       no
25
26build {}
27
28destroot {
29    copy ${worksrcpath}/prettyping ${destroot}${prefix}/bin/prettyping
30}