79d4063d78
qextserialport builds fine with both Qt4 and Qt5, so this commit enables it for Qt5. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# qextserialport
|
|
#
|
|
################################################################################
|
|
|
|
QEXTSERIALPORT_VERSION = 6c47244de4ce6db43c2f05caee957666c951dae1
|
|
QEXTSERIALPORT_SITE = https://qextserialport.googlecode.com/git
|
|
QEXTSERIALPORT_SITE_METHOD = git
|
|
|
|
QEXTSERIALPORT_LICENSE = MIT
|
|
|
|
QEXTSERIALPORT_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_QT),y)
|
|
QEXTSERIALPORT_DEPENDENCIES += qt
|
|
define QEXTSERIALPORT_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(QT_QMAKE))
|
|
endef
|
|
else ifeq ($(BR2_PACKAGE_QT5),y)
|
|
QEXTSERIALPORT_DEPENDENCIES += qt5base
|
|
define QEXTSERIALPORT_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(QT5_QMAKE))
|
|
endef
|
|
endif
|
|
|
|
define QEXTSERIALPORT_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define QEXTSERIALPORT_INSTALL_STAGING_CMDS
|
|
mkdir -p $(STAGING_DIR)/usr/include/QExtSerialPort
|
|
cp $(@D)/src/*.h $(STAGING_DIR)/usr/include/QExtSerialPort/
|
|
cp $(@D)/src/QExtSerialPort $(STAGING_DIR)/usr/include/QExtSerialPort/
|
|
cp -a $(@D)/*.so* $(STAGING_DIR)/usr/lib/
|
|
cp $(@D)/qextserialport.pc $(STAGING_DIR)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define QEXTSERIALPORT_INSTALL_TARGET_CMDS
|
|
cp -a $(@D)/*.so.* $(TARGET_DIR)/usr/lib
|
|
endef
|
|
|
|
$(eval $(generic-package))
|