diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2015-11-13 14:08:20 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-16 22:59:43 +0100 |
commit | 2d1bf98775aeb6796c66d545230c422b36b58cbe (patch) | |
tree | 1247870071871093d68bd2b6850171fcec19e5f4 | |
parent | 4f208863257768b875378af1421d33f1d6cf8a05 (diff) | |
download | meta-qt5-2d1bf98775aeb6796c66d545230c422b36b58cbe.tar.gz |
ninja-native: remove from meta-qt5 (moved to meta-oe)
ninja-native is now available in meta-oe (jethro and master):
http://git.openembedded.org/meta-openembedded/commit/?id=d931801de77a9cbb13c916231583b3526a7d3e11
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-devtools/ninja/ninja-native_git.bb | 23 |
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 @@ | |||
1 | DESCRIPTION = "Ninja is a small build system with a focus on speed." | ||
2 | LICENSE = "Apache-2" | ||
3 | |||
4 | inherit native | ||
5 | |||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=a81586a64ad4e476c791cda7e2f2c52e" | ||
7 | |||
8 | PV = "1.5.3+gitr${SRCPV}" | ||
9 | SRCREV="3309498174411e02e7680ea8b470bb7d1d70bdb8" | ||
10 | SRCBRANCH="release" | ||
11 | |||
12 | SRC_URI = "git://github.com/martine/ninja.git;branch=${SRCBRANCH}" | ||
13 | |||
14 | S="${WORKDIR}/git" | ||
15 | |||
16 | do_compile() { | ||
17 | python ${S}/bootstrap.py | ||
18 | } | ||
19 | |||
20 | do_install() { | ||
21 | install -d ${D}${bindir} | ||
22 | install -m 0755 ${S}/ninja ${D}${bindir}/ninja | ||
23 | } | ||