summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-devtools/ninja/ninja-native_git.bb23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes-devtools/ninja/ninja-native_git.bb b/recipes-devtools/ninja/ninja-native_git.bb
deleted file mode 100644
index e2deb6b2..00000000
--- a/recipes-devtools/ninja/ninja-native_git.bb
+++ /dev/null
@@ -1,23 +0,0 @@
1DESCRIPTION = "Ninja is a small build system with a focus on speed."
2LICENSE = "Apache-2"
3
4inherit native
5
6LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e"
7
8PV = "1.5.3+gitr${SRCPV}"
9SRCREV="3309498174411e02e7680ea8b470bb7d1d70bdb8"
10SRCBRANCH="release"
11
12SRC_URI = "git://github.com/martine/ninja.git;branch=${SRCBRANCH}"
13
14S="${WORKDIR}/git"
15
16do_compile() {
17 python ${S}/bootstrap.py
18}
19
20do_install() {
21 install -d ${D}${bindir}
22 install -m 0755 ${S}/ninja ${D}${bindir}/ninja
23}