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
473 B
19 lines
473 B
################################################################################
|
|
#
|
|
# Autotools packages
|
|
#
|
|
################################################################################
|
|
|
|
define autotools-package
|
|
$(REMOVE)/$($(PKG)_DIR)
|
|
$(UNTAR)/$($(PKG)_SOURCE)
|
|
$(CHDIR)/$($(PKG)_DIR); \
|
|
$(APPLY_PATCHES); \
|
|
$(CONFIGURE); \
|
|
$(MAKE); \
|
|
$(MAKE) install DESTDIR=$(TARGET_DIR)
|
|
$(REWRITE_CONFIG_SCRIPTS)
|
|
$(REWRITE_LIBTOOL)
|
|
$(REMOVE)/$($(PKG)_DIR)
|
|
$(TOUCH)
|
|
endef
|
|
|