You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/cmake.mk

25 lines
724 B

# This file is part of MXE.
# See index.html for further information.
PKG := cmake
$(PKG)_IGNORE :=
$(PKG)_VERSION := 2.8.9
$(PKG)_CHECKSUM := b96663c0757a5edfbddc410aabf7126a92131e2b
$(PKG)_SUBDIR := cmake-$($(PKG)_VERSION)
$(PKG)_FILE := cmake-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://www.cmake.org/files/v2.8/$($(PKG)_FILE)
$(PKG)_DEPS :=
define $(PKG)_UPDATE
echo 'Warning: Updates are temporarily disabled for package $(PKG).' >&2;
echo $($(PKG)_VERSION)
endef
define $(PKG)_BUILD_NATIVE
mkdir '$(1).build'
cd '$(1).build' && '$(1)/configure' \
--prefix='$(PREFIX)'
$(MAKE) -C '$(1).build' -j '$(JOBS)'
$(MAKE) -C '$(1).build' -j 1 install
endef