Ticket #35171: Portfile

File Portfile, 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=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem        1.0
5PortGroup         github 1.0
6
7
8name              mogenerator
9version           1.26
10github.setup      rentzsch mogenerator 1.26
11
12categories        devel
13maintainers       public+macports@francisco-garcia.net
14
15description       Core Data code generation
16long_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
24checksums         md5     cc761752cc581188e1065bd0919ad4c3 \
25                  rmd160  7c46aaa067338d04fcf46d652b0fdbfe1b34927a \
26                  sha256  d602e3fd8afbe585cde48050d9ba0184cdb4c51941cdfd0f5a304f3283c68ebe
27
28homepage          http://rentzsch.github.com/mogenerator
29platforms         darwin
30
31livecheck.type    git
32depends_lib-append  port:git-core
33
34configure       {}
35build.cmd       xcodebuild
36build.target    build
37
38destroot {
39    xinstall -m 755 ${worksrcpath}/build/Release/mogenerator ${destroot}${prefix}/bin
40}
41