Move all to deprecated folder.
This commit is contained in:
20
deprecated/firmware/buildroot/package/libqrencode/Config.in
Normal file
20
deprecated/firmware/buildroot/package/libqrencode/Config.in
Normal file
@@ -0,0 +1,20 @@
|
||||
config BR2_PACKAGE_LIBQRENCODE
|
||||
bool "libqrencode"
|
||||
help
|
||||
libqrencode is a C library for encoding data in a QR Code
|
||||
symbol, a kind of 2D symbology that can be scanned by handy
|
||||
terminals such as a mobile phone with CCD. The capacity of
|
||||
QR Code is up to 7000 digits or 4000 characters, and is
|
||||
highly robust.
|
||||
|
||||
http://fukuchi.org/works/qrencode/index.html
|
||||
|
||||
if BR2_PACKAGE_LIBQRENCODE
|
||||
|
||||
config BR2_PACKAGE_LIBQRENCODE_TOOLS
|
||||
bool "libqrencode tools"
|
||||
select BR2_PACKAGE_LIBPNG
|
||||
help
|
||||
Build command-line tools
|
||||
|
||||
endif #BR2_PACKAGE_LIBQRENCODE
|
||||
@@ -0,0 +1,2 @@
|
||||
# From http://fukuchi.org/works/qrencode/qrencode-3.4.2.tar.gz.sha1
|
||||
sha1 7daaad61f333ff6cdabfb0d925c3ab668d16dee2 qrencode-3.4.2.tar.gz
|
||||
@@ -0,0 +1,28 @@
|
||||
################################################################################
|
||||
#
|
||||
# libqrencode
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBQRENCODE_VERSION = 3.4.2
|
||||
LIBQRENCODE_SOURCE = qrencode-$(LIBQRENCODE_VERSION).tar.gz
|
||||
LIBQRENCODE_SITE = http://fukuchi.org/works/qrencode
|
||||
LIBQRENCODE_DEPENDENCIES = host-pkgconf
|
||||
LIBQRENCODE_INSTALL_STAGING = YES
|
||||
LIBQRENCODE_LICENSE = LGPLv2.1+
|
||||
LIBQRENCODE_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
LIBQRENCODE_CONF_ENV += LIBS='-pthread'
|
||||
else
|
||||
LIBQRENCODE_CONF_OPTS += --disable-thread-safety
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBQRENCODE_TOOLS),y)
|
||||
LIBQRENCODE_CONF_OPTS += --with-tools=yes
|
||||
LIBQRENCODE_DEPENDENCIES += libpng
|
||||
else
|
||||
LIBQRENCODE_CONF_OPTS += --with-tools=no
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user