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.

20 lines
480 B

################################################################################
#
# CMake packages
#
################################################################################
define cmake-package
4 years ago
$(call DEPENDENCIES)
$(call DOWNLOAD,$($(PKG)_SOURCE))
$(call STARTUP)
$(call EXTRACT,$(BUILD_DIR))
$(CHDIR)/$($(PKG)_DIR); \
$(APPLY_PATCHES); \
$(CMAKE); \
$(MAKE); \
$(MAKE) install DESTDIR=$(TARGET_DIR)
-rm -r $(TARGET_libdir)/cmake
4 years ago
$(call FOLLOWUP)
endef