7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> 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.1
|
|
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 = LGPLv2.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))
|