New package: libqrencode
[Peter: move to libraries, fix Config.in, install into STAGING_DIR] Signed-off-by: Phil Eichinger <phil@zankapfel.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
f72467e754
commit
f5eb71790a
@ -448,6 +448,7 @@ source "package/libglade/Config.in"
|
|||||||
source "package/gdk-pixbuf/Config.in"
|
source "package/gdk-pixbuf/Config.in"
|
||||||
source "package/libgtk2/Config.in"
|
source "package/libgtk2/Config.in"
|
||||||
source "package/libpng/Config.in"
|
source "package/libpng/Config.in"
|
||||||
|
source "package/libqrencode/Config.in"
|
||||||
source "package/libraw/Config.in"
|
source "package/libraw/Config.in"
|
||||||
source "package/librsvg/Config.in"
|
source "package/librsvg/Config.in"
|
||||||
source "package/libsvgtiny/Config.in"
|
source "package/libsvgtiny/Config.in"
|
||||||
|
20
package/libqrencode/Config.in
Normal file
20
package/libqrencode/Config.in
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
config BR2_PACKAGE_LIBQRENCODE
|
||||||
|
bool "libqrencode"
|
||||||
|
select BR2_PACKAGE_LIBPNG
|
||||||
|
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"
|
||||||
|
help
|
||||||
|
Build command-line tools
|
||||||
|
|
||||||
|
endif #BR2_PACKAGE_LIBQRENCODE
|
21
package/libqrencode/libqrencode.mk
Normal file
21
package/libqrencode/libqrencode.mk
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
################################################################################
|
||||||
|
#
|
||||||
|
# libqrencode
|
||||||
|
#
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
LIBQRENCODE_VERSION = 3.4.2
|
||||||
|
LIBQRENCODE_SOURCE = qrencode-$(LIBQRENCODE_VERSION).tar.gz
|
||||||
|
LIBQRENCODE_SITE = http://fukuchi.org/works/qrencode
|
||||||
|
LIBQRENCODE_DEPENDENCIES = libpng
|
||||||
|
LIBQRENCODE_INSTALL_STAGING = YES
|
||||||
|
LIBQRENCODE_LICENSE = LGPLv2.1+
|
||||||
|
LIBQRENCODE_LICENSE_FILES = COPYING
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_LIBQRENCODE_TOOLS),y)
|
||||||
|
LIBQRENCODE_CONF_OPT += --with-tools=yes
|
||||||
|
else
|
||||||
|
LIBQRENCODE_CONF_OPT += --with-tools=no
|
||||||
|
endif
|
||||||
|
|
||||||
|
$(eval $(autotools-package))
|
Loading…
Reference in New Issue
Block a user