blob: 7da9a2fb5547408adeab1ef0cb4ab66306bf8bc2 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
2# Released under the MIT license (see packages/COPYING)
3
4SUMMARY = "Cross-platform, open-source make system"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04005DESCRIPTION = "CMake is used to control the software compilation process \
6using simple platform and compiler independent configuration files. CMake \
7generates native makefiles and workspaces that can be used in the compiler \
8environment of your choice."
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009HOMEPAGE = "http://www.cmake.org/"
10BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
11SECTION = "console/utils"
Brad Bishopf3f93bb2019-10-16 14:33:32 -040012LICENSE = "BSD-3-Clause"
Andrew Geissler517393d2023-01-13 08:55:19 -060013LIC_FILES_CHKSUM = "file://Copyright.txt;md5=09069e0fffe4e5eaf6dde04c3b1932e5 \
Andrew Geisslerd1e89492021-02-12 15:35:20 -060014 file://Source/cmake.h;beginline=1;endline=2;md5=a5f70e1fef8614734eae0d62b4f5891b \
Brad Bishop316dfdd2018-06-25 12:45:53 -040015 "
Patrick Williamsc124f4f2015-09-15 14:41:29 -050016
Brad Bishop6e60e8b2018-02-01 10:27:11 -050017CMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:2])}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050019SRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080020"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021
Andrew Geissler517393d2023-01-13 08:55:19 -060022SRC_URI[sha256sum] = "1c511d09516af493694ed9baf13c55947a36389674d657a2d5e0ccedc6b291d8"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050023
24UPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"
Andrew Geisslerc9f78652020-09-18 14:11:35 -050025
26# This is specific to the npm package that installs cmake, so isn't
27# relevant to OpenEmbedded
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000028CVE_CHECK_IGNORE += "CVE-2016-10642"