1 | # $Id: Portfile,v 1.4 2004/01/18 04:54:50 toby Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name lesspipe |
---|
5 | version 1.51 |
---|
6 | categories textproc |
---|
7 | maintainers ingmarstein@gmail.com |
---|
8 | description lesspipe is an input filter for the pager less. |
---|
9 | long_description lesspipe.sh is an input filter for the pager less as \ |
---|
10 | described in its man page. The script runs under a ksh compliant \ |
---|
11 | shell (ksh, bash, zsh) and allows to view files with binary content, \ |
---|
12 | compressed files, archives and files contained in archives. A large \ |
---|
13 | and growing number of formats are supported both as plain and \ |
---|
14 | compressed files using compress, gzip, bzip2 or zip. |
---|
15 | homepage http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html |
---|
16 | platforms darwin |
---|
17 | master_sites ftp://ftp.ifh.de/pub/unix/utility/ \ |
---|
18 | http://www-zeuthen.desy.de/~friebel/unix/less/ |
---|
19 | checksums md5 7fbc327ed61603a7b04c35703f6d21a8 |
---|
20 | configure.args --yes |
---|
21 | destroot.destdir PREFIX=${destroot}${prefix} |
---|
22 | post-install { |
---|
23 | ui_msg "Set this in your .bash_profile:" |
---|
24 | ui_msg "export LESSOPEN='| ${prefix}/bin/lesspipe.sh %s'" |
---|
25 | } |
---|
26 | |
---|