You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
34b3070336
for pf in */*/Portfile
do
ed -s "$pf" <<-'EOF'
1,3g/^[[:space:]]*#[[:space:]]*\$Id.*\$[[:space:]]*$/d
1g/^[[:space:]]*$/d
w
q
EOF
done
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
PortSystem 1.0
|
|
|
|
name rtfreader
|
|
version 1.0
|
|
categories textproc
|
|
maintainers nomaintainer
|
|
homepage http://www.fiction.net/blong/programs/#rtf
|
|
platforms darwin
|
|
|
|
description Utility to read Microsoft RTF files
|
|
|
|
long_description RTF is the Microsoft Rich Text Format, a more portable, \
|
|
mostly ASCII formatting language that is exported by \
|
|
word processors like MS Word. The files generally have \
|
|
the extension .rtf, but occasionally have .doc \
|
|
extensions as well. This parser is from the Microsoft \
|
|
spec, ported to Unix systems.
|
|
|
|
master_sites http://www.fiction.net/blong/programs/
|
|
|
|
distname ms-rtf
|
|
|
|
checksums md5 fa203d863ec479b36bcbed3abdd4e77e
|
|
|
|
patchfiles patch-Makefile
|
|
use_configure no
|
|
|
|
build.target rtfreader
|
|
build.env CC=${configure.cc}
|
|
|
|
destroot {
|
|
xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin
|
|
}
|