Ticket #10243: Portfile.2

File Portfile.2, 964 bytes (added by aknapp@…, 18 years ago)

odcctools portfile

Line 
1# $Id: Portfile,v 1.4 2006/02/17 16:20:18 yves Exp $
2
3PortSystem 1.0
4name            odcctools
5version         20060413
6categories      devel
7maintainers     yves@opendarwin.org
8description     Darwin cctools build system.
9long_description        The odcctools project is geared towards improving the \
10                        Darwin cctools build system and code base to support \
11                        Darwin development. Darwin cctools has several \
12                        components, including the assembler odas(1), the \
13                        static linker odld(1), various tools for manipulating \
14                        and analyzing Mach-O and fat files, and support \
15                        libraries.
16homepage        http://www.opendarwin.org/projects/odcctools/
17platforms       darwin
18master_sites    http://www.opendarwin.org/downloads/
19checksums       sha1 74dfba3273ca83d0ad61b596b4c4e61a9d2bceed
20use_bzip2       yes
21configure.args  --program-prefix=od --mandir=${prefix}/share/man
22
23build.target    default
24
25post-destroot {
26        cd ${destroot}${prefix}/share/man/man1
27        foreach manpage [glob *.1] {
28                file rename ${manpage} od${manpage}
29        }
30}