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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | name prettyping |
---|
8 | version 1.0.0 |
---|
9 | categories net |
---|
10 | platforms darwin |
---|
11 | license MIT |
---|
12 | maintainers nomaintainer |
---|
13 | supported_archs noarch |
---|
14 | 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. |
---|
15 | long_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). |
---|
18 | homepage http://denilsonsa.github.io/prettyping/ |
---|
19 | master_sites https://github.com/denilsonsa/prettyping/archive |
---|
20 | checksums rmd160 caf8ed61b767c96b305bfe90c5624e84a0e43c7e \ |
---|
21 | sha256 02a4144ff2ab7d3e2c7915041225270e96b04ee97777be905d1146e76084805d |
---|
22 | git.url https://github.com/denilsonsa/prettyping.git |
---|
23 | fetch.type git |
---|
24 | use_configure no |
---|
25 | |
---|
26 | build {} |
---|
27 | |
---|
28 | destroot { |
---|
29 | copy ${worksrcpath}/prettyping ${destroot}${prefix}/bin/prettyping |
---|
30 | } |
---|