view src/build-cmake.mk @ 4716:4dfed2605227

cmake: update to v3.11.2 * src/build-cmake.mk: update version/checksum * src/cmake.mk: update version/checksum
author John Donoghue
date Tue, 29 May 2018 09:17:55 -0400
parents 3edbea625ba8
children ebd7abf4b0d7
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := build-cmake
$(PKG)_IGNORE   :=
$(PKG)_VERSION  := 3.11.2
$(PKG)_CHECKSUM := 75ffbe02186b8e04044bd2e29389deeb57a8a71a
$(PKG)_SUBDIR   := cmake-$($(PKG)_VERSION)
$(PKG)_FILE     := cmake-$($(PKG)_VERSION).tar.gz
$(PKG)_URL      := http://www.cmake.org/files/v$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
ifeq ($(USE_SYSTEM_GCC),yes)
  $(PKG)_DEPS   :=
else
  $(PKG)_DEPS   := build-gcc
endif

define $(PKG)_UPDATE
    $(WGET) -q -O- 'https://www.cmake.org/cmake/resources/software.html' | \
    $(SED) -n 's,.*cmake-\([0-9.]*\)\.tar.*,\1,p' | \
    $(SORT) -V | \
    tail -1
endef

define $(PKG)_BUILD
    mkdir '$(1).build'
    cd    '$(1).build' && '$(1)/configure' \
        --prefix='$(BUILD_TOOLS_PREFIX)'
    $(MAKE) -C '$(1).build' -j '$(JOBS)'
    $(MAKE) -C '$(1).build' -j 1 install DESTDIR='$(3)'
endef