Ticket #43763: Portfile

File Portfile, 1.6 KB (added by Schamschula (Marius Schamschula), 10 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id: Portfile 115381 2014-01-01 05:42:04Z jeremyhu@macports.org $
3
4PortSystem          1.0
5
6name                mksh
7version             R49
8categories          shells
9license             BSD
10platforms           darwin
11maintainers         gmail.com:mschamschula
12
13description         A free implementation of the Korn Shell programming language
14long_description    A free implementation of the Korn Shell programming language and \
15                    a successor to the Public Domain Korn Shell (pdksh).
16homepage            https://www.mirbsd.org/mksh.htm
17
18extract.suffix      .tgz
19worksrcdir          ${name}
20
21master_sites        https://www.mirbsd.org/MirOS/dist/mir/mksh/
22
23checksums           rmd160  fa7a24e604daea30d5e5fd7bb78e24b2d7044764 \
24                    sha256  4dd6c37fe2b8603be3d59744d7866d72913fca49d8a68d3254d064b12eb3da49
25
26use_configure       no
27
28build.cmd           {
29                        chmod a+x Build.sh
30                        ./Build.sh
31                    }
32build.target-delete all
33
34destroot            {
35                        xinstall -d ${workpath}/${destdir}${prefix}/share/doc/mksh/examples/
36                        xinstall -o root -g bin -m 555 ${worksrcpath}/mksh ${workpath}/${destdir}${prefix}/bin
37                        xinstall -o root -g bin -m 444 ${worksrcpath}/dot.mkshrc ${workpath}/${destdir}${prefix}/share/doc/mksh/examples
38                        xinstall -o root -g bin -m 444 ${worksrcpath}/mksh.1 ${workpath}/${destdir}${prefix}/share/man/man1
39                    }