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

PortSystem          1.0
PortGroup           python 1.0

name                fbuild
version             0.1
revision            1
categories          devel python
platforms           darwin
maintainers         nomaintainer

description         Software build system
long_description    Fbuild is a cross platform multilanguage build \
                    system that uses a caching build system instead of \
                    tree evaluation like Make.
homepage            http://www.felix-lang.org/

python.default_version  34

master_sites        sourceforge:felix
checksums           md5     e335c52eaeec1c735413e8a3cf95a93c \
                    sha1    c1be73703aa64369962c9edc057fa65eb7f9c5df \
                    rmd160  151f89291cc393d5ce89f7bea08bea5da95de0b1

post-destroot {
    xinstall -d ${destroot}${prefix}/share/doc/${name}

    xinstall -m 644 ${worksrcpath}/LICENSE ${destroot}${prefix}/share/doc/${name}
    xinstall -m 644 ${worksrcpath}/README ${destroot}${prefix}/share/doc/${name}

    file copy ${worksrcpath}/docs ${destroot}${prefix}/share/doc/${name}/docs

    xinstall -d ${destroot}${prefix}/share/doc/${name}/examples
    foreach f [glob -dir ${worksrcpath}/examples -tails *] {
        file copy ${worksrcpath}/examples/$f ${destroot}${prefix}/share/doc/${name}/examples/$f
    }
}