mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 07:56:21 +00:00
930766ab91
hotfix release announcement: - https://groups.google.com/g/ninja-build/c/u0d6iq5-VZY
19 lines
621 B
Makefile
19 lines
621 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="ninja"
|
|
PKG_VERSION="1.11.1"
|
|
PKG_SHA256="31747ae633213f1eda3842686f83c2aa1412e0f5691d1c14dbbcc67fe7400cea"
|
|
PKG_LICENSE="Apache"
|
|
PKG_SITE="https://ninja-build.org/"
|
|
PKG_URL="https://github.com/ninja-build/ninja/archive/v${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="Python3:host"
|
|
PKG_LONGDESC="Small build system with a focus on speed"
|
|
PKG_TOOLCHAIN="cmake-make"
|
|
|
|
makeinstall_host() {
|
|
mkdir -p ${TOOLCHAIN}/bin
|
|
cp ninja ${TOOLCHAIN}/bin
|
|
}
|