X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/525838efb5328c49f8623781375a09a29b2b5878..5e4f3f7961b85eec809c2c5e581876ab9bd94b71:/include/package.mk diff --git a/include/package.mk b/include/package.mk index a9819642d..83c3025de 100644 --- a/include/package.mk +++ b/include/package.mk @@ -19,6 +19,7 @@ include $(INCLUDE_DIR)/depends.mk STAMP_PREPARED=$(PKG_BUILD_DIR)/.prepared$(if $(QUILT)$(DUMP),,_$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),))) STAMP_CONFIGURED:=$(PKG_BUILD_DIR)/.configured STAMP_BUILT:=$(PKG_BUILD_DIR)/.built +STAMP_INSTALLED:=$(STAGING_DIR)/stamp/.$(PKG_NAME)_installed include $(INCLUDE_DIR)/download.mk include $(INCLUDE_DIR)/quilt.mk @@ -43,6 +44,7 @@ endif define Download/default FILE:=$(PKG_SOURCE) URL:=$(PKG_SOURCE_URL) + SUBDIR:=$(PKG_SOURCE_SUBDIR) PROTO:=$(PKG_SOURCE_PROTO) VERSION:=$(PKG_SOURCE_VERSION) MD5SUM:=$(PKG_MD5SUM) @@ -65,15 +67,21 @@ define Build/DefaultTargets $(STAMP_BUILT): $(STAMP_CONFIGURED) $(Build/Compile) + touch $$@ + + $(STAMP_INSTALLED): $(STAMP_BUILT) $(call Build/InstallDev,$(STAGING_DIR)) touch $$@ ifdef Build/InstallDev - compile: $(STAMP_BUILT) + compile: $(STAMP_INSTALLED) endif define Build/DefaultTargets endef + + prepare: $(STAMP_PREPARED) + configure: $(STAMP_CONFIGURED) endef define BuildPackage @@ -123,7 +131,11 @@ define libtool_fixup_libdir endef define pkg_install_files - $(foreach install_file,$(3),$(INSTALL_DIR) $(2)/`dirname $(install_file)`; $(CP) $(1)/$(install_file) $(2)/`dirname $(install_file)`;) + $(foreach install_file,$(1),$(INSTALL_DIR) $(3)/`dirname $(install_file)`; $(INSTALL_DATA) $(2)/$(install_file) $(3)/`dirname $(install_file)`;) +endef + +define pkg_install_bin + $(foreach install_apps,$(1),$(INSTALL_DIR) $(3)/`dirname $(install_file)`; $(INSTALL_BIN) $(2)/$(install_file) $(3)/`dirname $(install_file)`;) endef define Build/Prepare @@ -143,8 +155,8 @@ $(PACKAGE_DIR): dumpinfo: download: -prepare: $(STAMP_PREPARED) -configure: $(STAMP_CONFIGURED) +prepare: +configure: compile: install: clean: FORCE