mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 23:39:40 +01:00
Needed to build cmake and nativesdk-cmake (cmake-native is built without curl support). (From OE-Core rev: a82aa37cfe037782877b4a1a4c05ac44c184099c) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
1.3 KiB
PHP
28 lines
1.3 KiB
PHP
# Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
|
|
# Released under the MIT license (see packages/COPYING)
|
|
|
|
SUMMARY = "Cross-platform, open-source make system"
|
|
DESCRIPTION = "CMake is used to control the software compilation process \
|
|
using simple platform and compiler independent configuration files. CMake \
|
|
generates native makefiles and workspaces that can be used in the compiler \
|
|
environment of your choice."
|
|
HOMEPAGE = "http://www.cmake.org/"
|
|
BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
|
|
SECTION = "console/utils"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=0cafc0f3b6b28f3d5ecb5d1a68c36471 \
|
|
file://Source/cmake.h;beginline=1;endline=2;md5=4ba59ac0e953e1a713eea8c55b1d531b \
|
|
"
|
|
|
|
CMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:2])}"
|
|
|
|
SRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
|
|
file://0001-cmCTestCurl-Avoid-using-undocumented-type-for-CURLOP.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "81ee8170028865581a8e10eaf055afb620fa4baa0beb6387241241a975033508"
|
|
|
|
UPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"
|
|
|
|
CVE_STATUS[CVE-2016-10642] = "cpe-incorrect: This is specific to the npm package that installs cmake, so isn't relevant to OpenEmbedded"
|