xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/cmake/cmake.inc (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# Copyright (C) 2005, Koninklijke Philips Electronics NV.  All Rights Reserved
2*4882a593Smuzhiyun# Released under the MIT license (see packages/COPYING)
3*4882a593Smuzhiyun
4*4882a593SmuzhiyunSUMMARY = "Cross-platform, open-source make system"
5*4882a593SmuzhiyunDESCRIPTION = "CMake is used to control the software compilation process \
6*4882a593Smuzhiyunusing simple platform and compiler independent configuration files. CMake \
7*4882a593Smuzhiyungenerates native makefiles and workspaces that can be used in the compiler \
8*4882a593Smuzhiyunenvironment of your choice."
9*4882a593SmuzhiyunHOMEPAGE = "http://www.cmake.org/"
10*4882a593SmuzhiyunBUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
11*4882a593SmuzhiyunSECTION = "console/utils"
12*4882a593SmuzhiyunLICENSE = "BSD-3-Clause"
13*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://Copyright.txt;md5=31023e1d3f51ca90a58f55bcee8e2339 \
14*4882a593Smuzhiyun                    file://Source/cmake.h;beginline=1;endline=2;md5=a5f70e1fef8614734eae0d62b4f5891b \
15*4882a593Smuzhiyun                    "
16*4882a593Smuzhiyun
17*4882a593SmuzhiyunCMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:2])}"
18*4882a593Smuzhiyun
19*4882a593SmuzhiyunSRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
20*4882a593Smuzhiyun           file://0003-cmake-support-OpenEmbedded-Qt4-tool-binary-names.patch \
21*4882a593Smuzhiyun           file://0004-Fail-silently-if-system-Qt-installation-is-broken.patch \
22*4882a593Smuzhiyun"
23*4882a593Smuzhiyun
24*4882a593SmuzhiyunSRC_URI[sha256sum] = "9f8469166f94553b6978a16ee29227ec49a2eb5ceb608275dec40d8ae0d1b5a0"
25*4882a593Smuzhiyun
26*4882a593SmuzhiyunUPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"
27*4882a593Smuzhiyun
28*4882a593Smuzhiyun# This is specific to the npm package that installs cmake, so isn't
29*4882a593Smuzhiyun# relevant to OpenEmbedded
30*4882a593SmuzhiyunCVE_CHECK_IGNORE += "CVE-2016-10642"
31