Signed-off-by: Markus Pargmann <[email protected]>
---
 rules/host-ninja.in   |  8 ++++++++
 rules/host-ninja.make | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)
 create mode 100644 rules/host-ninja.in
 create mode 100644 rules/host-ninja.make

diff --git a/rules/host-ninja.in b/rules/host-ninja.in
new file mode 100644
index 000000000000..381837264ff1
--- /dev/null
+++ b/rules/host-ninja.in
@@ -0,0 +1,8 @@
+## SECTION=hosttools_noprompt
+
+config HOST_NINJA
+       tristate
+       select HOST_SYSTEM_PYTHON
+       default ALLYES
+       help
+         Ninja build tool
diff --git a/rules/host-ninja.make b/rules/host-ninja.make
new file mode 100644
index 000000000000..32e6a604b881
--- /dev/null
+++ b/rules/host-ninja.make
@@ -0,0 +1,49 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2014 by Markus Pargmann <[email protected]>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+HOST_PACKAGES-$(PTXCONF_HOST_NINJA) += host-ninja
+
+#
+# Paths and names
+#
+HOST_NINJA_VERSION     := 1.5.1
+HOST_NINJA_MD5         := 59f4f1cf5d9bb0d7877a6d5a5afd770a
+HOST_NINJA             := ninja-$(HOST_NINJA_VERSION)
+HOST_NINJA_SUFFIX      := tar.gz
+HOST_NINJA_URL         := 
https://github.com/martine/ninja/archive/v$(HOST_NINJA_VERSION).$(HOST_NINJA_SUFFIX)
+HOST_NINJA_SOURCE      := $(SRCDIR)/$(HOST_NINJA).$(HOST_NINJA_SUFFIX)
+HOST_NINJA_DIR         := $(HOST_BUILDDIR)/$(HOST_NINJA)
+
+# ----------------------------------------------------------------------------
+# Compile
+# ----------------------------------------------------------------------------
+
+HOST_NINJA_PATH                := PATH=$(HOST_PATH)
+
+$(STATEDIR)/host-ninja.compile:
+       @$(call targetinfo)
+       cd $(HOST_NINJA_DIR) && \
+               $(HOST_NINJA_PATH) \
+               python bootstrap.py
+       @$(call touch)
+
+# ----------------------------------------------------------------------------
+# Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/host-ninja.install:
+       @$(call targetinfo)
+       install -D -m755 $(HOST_NINJA_DIR)/ninja $(HOST_NINJA_PKGDIR)/bin/ninja
+       @$(call touch)
+
+# vim: syntax=make
-- 
2.1.3


-- 
ptxdist mailing list
[email protected]

Reply via email to