blob: 09949b566c908bd7d0a1907f6819e69b19c616aa [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"
Brad Bishop19323692019-04-05 15:28:33 -040013LIC_FILES_CHKSUM = "file://Copyright.txt;md5=622747147b46f22e1953876a7cba3323 \
Brad Bishop316dfdd2018-06-25 12:45:53 -040014 file://Source/cmake.h;md5=4494dee184212fc89c469c3acd555a14;beginline=1;endline=3 \
15 "
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 file://0002-cmake-Prevent-the-detection-of-Qt5.patch \
21 file://0003-cmake-support-OpenEmbedded-Qt4-tool-binary-names.patch \
22 file://0004-Fail-silently-if-system-Qt-installation-is-broken.patch \
23"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024
Andrew Geissler82c905d2020-04-13 13:39:40 -050025SRC_URI[md5sum] = "d86ccaf3d2462b6b5947919abe5b9f15"
26SRC_URI[sha256sum] = "5f760b50b8ecc9c0c37135fae5fbf00a2fef617059aa9d61c1bb91653e5a8bfc"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050027
28UPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"