Ticket #35171: Portfile.2

File Portfile.2, 1.4 KB (added by public@…, 12 years ago)
Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=portfile:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           github 1.0
6PortGroup           xcode 1.0
7
8license             MIT
9github.setup        rentzsch mogenerator 1.26
10
11categories          devel
12maintainers         francisco-garcia.net:public+macports
13
14description         Core Data code generation
15long_description    mogenerator is a command-line tool that, given an \
16                    .xcdatamodel file, will generate two classes per entity. The \
17                    first class, _MyEntity, is intended solely for machine \
18                    consumption and will be continuously overwritten to stay in \
19                    sync with your data model. The second class, MyEntity, \
20                    subclasses _MyEntity, won't ever be overwritten and is \
21                    a great place to put your custom logic.
22
23checksums           md5     cc761752cc581188e1065bd0919ad4c3 \
24                    rmd160  7c46aaa067338d04fcf46d652b0fdbfe1b34927a \
25                    sha256  d602e3fd8afbe585cde48050d9ba0184cdb4c51941cdfd0f5a304f3283c68ebe
26
27homepage            http://rentzsch.github.com/mogenerator
28platforms           darwin
29
30use_configure       no
31
32destroot {
33    xinstall -m 755 ${worksrcpath}/build/Release/mogenerator ${destroot}${prefix}/bin
34}
35