30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
40 lines
981 B
Makefile
40 lines
981 B
Makefile
################################################################################
|
|
#
|
|
# quazip
|
|
#
|
|
################################################################################
|
|
|
|
QUAZIP_VERSION = 0.7.3
|
|
QUAZIP_SITE = http://sourceforge.net/projects/quazip/files/quazip/$(QUAZIP_VERSION)
|
|
QUAZIP_INSTALL_STAGING = YES
|
|
QUAZIP_DEPENDENCIES = \
|
|
zlib \
|
|
$(if $(BR2_PACKAGE_QT),qt) \
|
|
$(if $(BR2_PACKAGE_QT5),qt5base)
|
|
QUAZIP_LICENSE = LGPL-2.1
|
|
QUAZIP_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_QT5),y)
|
|
QUAZIP_QMAKE = $(QT5_QMAKE)
|
|
else
|
|
QUAZIP_QMAKE = $(QT_QMAKE)
|
|
endif
|
|
|
|
define QUAZIP_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_MAKE_ENV) $(QUAZIP_QMAKE) PREFIX=/usr)
|
|
endef
|
|
|
|
define QUAZIP_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define QUAZIP_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install INSTALL_ROOT=$(STAGING_DIR)
|
|
endef
|
|
|
|
define QUAZIP_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install INSTALL_ROOT=$(TARGET_DIR)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|