# -*- 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
# $Id$

PortSystem          1.0
PortGroup           github 1.0
PortGroup           xcode 1.0

github.setup        rentzsch mogenerator 1.30.1
categories          devel
platforms           darwin
maintainers         francisco-garcia.net:public+macports
license             MIT

description         Core Data code generation

long_description    mogenerator is a command-line tool that, given an \
                    .xcdatamodel file, will generate two classes per entity. The \
                    first class, _MyEntity, is intended solely for machine \
                    consumption and will be continuously overwritten to stay in \
                    sync with your data model. The second class, MyEntity, \
                    subclasses _MyEntity, won't ever be overwritten and is \
                    a great place to put your custom logic.

homepage            http://rentzsch.github.com/mogenerator/

checksums           rmd160  89cb8fcda016546c5446b832c49f62635b3f853c \
                    sha256  7d544b4fd65cf129f90135dc41f60b31bd9ceb1375de9e9e3781f6720c158ffa

destroot {
    xinstall ${worksrcpath}/build/Release/mogenerator ${destroot}${prefix}/bin
    
    set docdir ${prefix}/share/doc/${name}
    xinstall -d ${destroot}${docdir}
    xinstall -m 644 -W ${worksrcpath} \
        README.markdown \
        ${destroot}${docdir}
}