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.
18 lines
461 B
18 lines
461 B
################################################################################
|
|
#
|
|
# Autotools packages
|
|
#
|
|
################################################################################
|
|
|
|
define autotools-package
|
|
$(call DEPENDENCIES)
|
|
$(call DOWNLOAD,$($(PKG)_SOURCE))
|
|
$(call STARTUP)
|
|
$(call EXTRACT,$(BUILD_DIR))
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
$(APPLY_PATCHES); \
|
|
$(CONFIGURE); \
|
|
$(MAKE); \
|
|
$(MAKE) install DESTDIR=$(TARGET_DIR)
|
|
$(call FOLLOWUP)
|
|
endef
|
|
|