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