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.
19 lines
480 B
19 lines
480 B
################################################################################
|
|
#
|
|
# CMake packages
|
|
#
|
|
################################################################################
|
|
|
|
define cmake-package
|
|
$(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
|
|
$(call FOLLOWUP)
|
|
endef
|
|
|