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 | |
---|
6 | name picocom |
---|
7 | version 1.4 |
---|
8 | categories comms |
---|
9 | maintainers gmail.com:ranauei |
---|
10 | platforms darwin |
---|
11 | description Minimal dump-terminal emulation program |
---|
12 | long_description \ |
---|
13 | Picocom was designed to serve as a simple, manual, \ |
---|
14 | modem configuration, testing, and debugging tool. \ |
---|
15 | It has also served (quite well) as a low-tech \ |
---|
16 | "terminal-window" to allow operator intervention in \ |
---|
17 | PPP connection scripts (something like the ms-windows \ |
---|
18 | "open terminal window before / after dialing" feature). \ |
---|
19 | It could also prove useful in many other similar tasks. |
---|
20 | homepage http://code.google.com/p/picocom |
---|
21 | master_sites googlecode |
---|
22 | checksums md5 08fcc5f6bb9e7676a2569386d5ea9f70 \ |
---|
23 | sha1 dad94531807cd13ab8690d2263d3a680ed4100ba \ |
---|
24 | rmd160 083f1dbebbfaae527366652ef297f641e42947e1 |
---|
25 | use_configure no |
---|
26 | build.target "" |
---|
27 | build.args CC=${configure.cc} |
---|
28 | |
---|
29 | destroot { |
---|
30 | xinstall ${worksrcpath}/${name} ${destroot}${prefix}/bin |
---|
31 | xinstall -m 644 ${worksrcpath}/${name}.8 ${destroot}${prefix}/share/man/man8 |
---|
32 | } |
---|