Ticket #60459: Portfile

File Portfile, 1.1 KB (added by Greisby (Greisberger Christophe), 4 years ago)

Portfile

Line 
1PortSystem      1.0
2PortGroup       xcode 1.0
3
4name            launch
5version         1.2.5
6license         BSD
7maintainers     nomaintainer
8
9description     command-line launcher for OS X in the spirit of open
10
11long_description \
12    Apple provides a simple command-line launching program called open \
13    with OS X. It offers few options - launching applications by name \
14    or by path, launching TextEdit, or opening a number of applications, \
15    documents, folders, or URLs. With the exception of special support for \
16    TextEdit (open -a), launch does all this and more.
17
18homepage        https://sabi.net/nriley/software/
19master_sites    ${homepage}
20
21checksums       md5 0d5f999df2d40e04d53fd22b2b1d60df \
22                sha1 61bc40e19587e455be354f821f7864d8a8ce0e78 \
23                rmd160 2307093f481984c53572cbfbce5e82730e9db310
24
25xcode.destroot.path ${prefix}/bin
26
27post-destroot {
28    xinstall -m 0444 ${worksrcpath}/${name}.1 \
29        ${destroot}${prefix}/share/man/man1
30
31    set docdir ${prefix}/share/doc/${name}
32    xinstall -d ${destroot}${docdir}
33    xinstall -m 0644 ${worksrcpath}/README ${destroot}${docdir}
34}
35
36livecheck.type  none