Ticket #5069: Portfile

File Portfile, 1.0 KB (added by cssdev@…, 19 years ago)

Portfile for CMake 2.2.1 beta

Line 
1# $Id: $
2
3PortSystem 1.0
4name            cmake-devel
5version         2.2.1
6categories      devel
7maintainers     cssdev@mac.com
8description     Cross-platform make (beta)
9homepage        http://www.cmake.org/
10long_description        \
11        An extensible, open-source system that manages the build        \
12        process in an operating system and compiler independent manner. \
13        Unlike many cross-platform systems, CMake is designed to be     \
14        used in conjunction with the native build environment.
15
16platforms       darwin
17master_sites    http://www.cmake.org/files/v2.2/
18distname        cmake-${version}
19checksums       md5 0b8ea4304901a2c4374fb0d1c313834a
20configure.args  --mandir=/share/man
21
22post-destroot {
23        xinstall -d -m 0755 ${destroot}${prefix}/share/emacs/site-lisp
24        xinstall -m 0644 ${worksrcpath}/Docs/cmake-mode.el \
25                ${destroot}${prefix}/share/emacs/site-lisp
26        xinstall -d -m 0755 ${destroot}${prefix}/share/CMake/Docs
27        xinstall -m 0644 -W ${worksrcpath}/Docs cmake-indent.vim \
28                cmake-syntax.vim ${destroot}${prefix}/share/CMake/Docs
29        xinstall -m 0644 ${worksrcpath}/CMake.rtf \
30                ${destroot}${prefix}/share/CMake/Docs
31}