Move all to deprecated folder.
This commit is contained in:
9
deprecated/firmware/buildroot/package/quazip/Config.in
Normal file
9
deprecated/firmware/buildroot/package/quazip/Config.in
Normal file
@@ -0,0 +1,9 @@
|
||||
config BR2_PACKAGE_QUAZIP
|
||||
bool "quazip"
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
QuaZIP is a simple C++ wrapper over Gilles Vollant's
|
||||
ZIP/UNZIP package that can be used to access ZIP
|
||||
archives. It uses the Qt toolkit.
|
||||
|
||||
http://quazip.sourceforge.net
|
||||
2
deprecated/firmware/buildroot/package/quazip/quazip.hash
Normal file
2
deprecated/firmware/buildroot/package/quazip/quazip.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 78c984103555c51e6f7ef52e3a2128e2beb9896871b2cc4d4dbd4d64bff132de quazip-0.7.1.tar.gz
|
||||
39
deprecated/firmware/buildroot/package/quazip/quazip.mk
Normal file
39
deprecated/firmware/buildroot/package/quazip/quazip.mk
Normal file
@@ -0,0 +1,39 @@
|
||||
################################################################################
|
||||
#
|
||||
# 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))
|
||||
Reference in New Issue
Block a user