From: Andreas Naumann Date: Mon, 9 Mar 2020 21:39:39 +0000 (+0100) Subject: package/qextserialport: convert to qmake infra X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ac5fd1ac947cfff32010198371b45b2f5847fc65;p=buildroot.git package/qextserialport: convert to qmake infra This commit converts the qextserialport to the qmake infra, which is a straightforward conversion as it doesn't require any custom environment option or additional hook. Signed-off-by: Andreas Naumann Signed-off-by: Thomas Petazzoni --- diff --git a/package/qextserialport/qextserialport.mk b/package/qextserialport/qextserialport.mk index ecaff21efc..419ea669cb 100644 --- a/package/qextserialport/qextserialport.mk +++ b/package/qextserialport/qextserialport.mk @@ -14,26 +14,4 @@ ifeq ($(BR2_STATIC_LIBS),y) QEXTSERIALPORT_CONF_OPTS += CONFIG+=qesp_static endif -QEXTSERIALPORT_DEPENDENCIES = qt5base - -define QEXTSERIALPORT_CONFIGURE_CMDS - cd $(@D); $(TARGET_MAKE_ENV) $(QT5_QMAKE) $(QEXTSERIALPORT_CONF_OPTS) -endef - -define QEXTSERIALPORT_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) -endef - -define QEXTSERIALPORT_INSTALL_STAGING_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install -endef - -ifeq ($(BR2_STATIC_LIBS),y) -QEXTSERIALPORT_INSTALL_TARGET = NO -else -define QEXTSERIALPORT_INSTALL_TARGET_CMDS - cp -a $(@D)/*.so.* $(TARGET_DIR)/usr/lib -endef -endif - -$(eval $(generic-package)) +$(eval $(qmake-package))