Ticket #3113: Portfile

File Portfile, 999 bytes (added by cssdev@…, 19 years ago)

Portfile for hnb

Line 
1# $Id: $
2
3PortSystem 1.0
4name                    hnb
5version                 1.9.18
6categories              editors
7maintainers             cssdev@mac.com
8
9description             command-line outliner
10
11long_description        Hierarchical notebook (hnb) is a curses program \
12        to structure many kinds of data in one place, for example       \
13        addresses, to-do lists, ideas, book reviews or to store         \
14        snippets of brainstorming.
15
16platforms               darwin
17homepage                http://hnb.sourceforge.net/
18master_sites            ${homepage}.files/
19checksums               md5 702867cb3f94936790493eb948c36412
20use_configure           no
21build.target           
22
23destroot {
24        xinstall -m 755 -s ${worksrcpath}/src/${name} ${destroot}${prefix}/bin
25        xinstall -m 644 ${worksrcpath}/doc/${name}.1 \
26                ${destroot}${prefix}/share/man/man1
27        xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
28        xinstall -m 644 -W ${worksrcpath} COPYING README VERSION \
29                ${destroot}${prefix}/share/doc/${name}
30        xinstall -m 644 -W ${worksrcpath}/doc Documentation.hnb \
31                Documentation.html hnbrc \
32                ${destroot}${prefix}/share/doc/${name}
33}