cmake.inc 1.5 KB

123456789101112131415161718192021222324252627282930
  1. # Copyright (C) 2005, Koninklijke Philips Electronics NV. All Rights Reserved
  2. # Released under the MIT license (see packages/COPYING)
  3. SUMMARY = "Cross-platform, open-source make system"
  4. DESCRIPTION = "CMake is used to control the software compilation process \
  5. using simple platform and compiler independent configuration files. CMake \
  6. generates native makefiles and workspaces that can be used in the compiler \
  7. environment of your choice. CMake is quite sophisticated: it is possible to \
  8. support complex environments requiring system configuration, pre-processor \
  9. generation, code generation, and template instantiation."
  10. HOMEPAGE = "http://www.cmake.org/"
  11. BUGTRACKER = "http://public.kitware.com/Bug/my_view_page.php"
  12. SECTION = "console/utils"
  13. LICENSE = "BSD"
  14. LIC_FILES_CHKSUM = "file://Copyright.txt;md5=622747147b46f22e1953876a7cba3323 \
  15. file://Source/cmake.h;md5=4494dee184212fc89c469c3acd555a14;beginline=1;endline=3 \
  16. "
  17. CMAKE_MAJOR_VERSION = "${@'.'.join(d.getVar('PV').split('.')[0:2])}"
  18. SRC_URI = "https://cmake.org/files/v${CMAKE_MAJOR_VERSION}/cmake-${PV}.tar.gz \
  19. file://0002-cmake-Prevent-the-detection-of-Qt5.patch \
  20. file://0003-cmake-support-OpenEmbedded-Qt4-tool-binary-names.patch \
  21. file://0004-Fail-silently-if-system-Qt-installation-is-broken.patch \
  22. "
  23. SRC_URI[md5sum] = "bf69e837eeda3dd4e9f52cffcf546a11"
  24. SRC_URI[sha256sum] = "13958243a01365b05652fa01b21d40fa834f70a9e30efa69c02604e64f58b8f5"
  25. UPSTREAM_CHECK_REGEX = "cmake-(?P<pver>\d+(\.\d+)+)\.tar"