Revision
96015
Author
ryandesign@macports.org
Date
2012-07-28 12:49:56 -0700 (Sat, 28 Jul 2012)

Log Message

ninja: new port, version 120715 (#35392)

Added Paths

Diff

Added: trunk/dports/devel/ninja/Portfile (0 => 96015)


--- trunk/dports/devel/ninja/Portfile	                        (rev 0)
+++ trunk/dports/devel/ninja/Portfile	2012-07-28 19:49:56 UTC (rev 96015)
@@ -0,0 +1,42 @@
+# -*- 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           github 1.0
+
+github.setup        martine ninja 120715 release-
+categories          devel
+platforms           darwin
+maintainers         simplit.com:port openmaintainer
+license             Apache-2
+
+description         Small build system with a focus on speed.
+
+long_description    Ninja is yet another build system. It takes as input    \
+                    the interdependencies of files (typically source code   \
+                    and output executables) and orchestrates building them, \
+                    quickly.                                                \
+                                                                            \
+                    Ninja joins a sea of other build systems. Its           \
+                    distinguishing goal is to be fast. It is born from my   \
+                    work on the Chromium browser project, which has over    \
+                    30,000 source files and whose other build systems       \
+                    (including one built from custom non-recursive          \
+                    Makefiles) can take ten seconds to start building       \
+                    after changing one file. Ninja is under a second.
+
+checksums           rmd160  3b5c500e3ad8997bb5f7f5e525d9a7e77ed37c96 \
+                    sha256  d0579a0181d76883b408f6487af52a18e548e3981df2c8d475d2d08e031a4b02
+
+use_configure       no
+
+variant universal {}
+
+build.cmd           ./bootstrap.py
+build.target
+build.args          --verbose
+build.env           CXX="${configure.cxx} [get_canonical_archflags cxx]"
+
+destroot {
+    xinstall -m 755 ${worksrcpath}/${name} ${destroot}${prefix}/bin
+}
Property changes on: trunk/dports/devel/ninja/Portfile
___________________________________________________________________

Added: svn:keywords

Added: svn:eol-style