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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | PortGroup xcode 1.0 |
---|
7 | |
---|
8 | license MIT |
---|
9 | github.setup rentzsch mogenerator 1.26 |
---|
10 | |
---|
11 | categories devel |
---|
12 | maintainers francisco-garcia.net:public+macports |
---|
13 | |
---|
14 | description Core Data code generation |
---|
15 | long_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 | |
---|
23 | checksums md5 cc761752cc581188e1065bd0919ad4c3 \ |
---|
24 | rmd160 7c46aaa067338d04fcf46d652b0fdbfe1b34927a \ |
---|
25 | sha256 d602e3fd8afbe585cde48050d9ba0184cdb4c51941cdfd0f5a304f3283c68ebe |
---|
26 | |
---|
27 | homepage http://rentzsch.github.com/mogenerator |
---|
28 | platforms darwin |
---|
29 | |
---|
30 | use_configure no |
---|
31 | |
---|
32 | destroot { |
---|
33 | xinstall -m 755 ${worksrcpath}/build/Release/mogenerator ${destroot}${prefix}/bin |
---|
34 | } |
---|
35 | |
---|