From 39bafca8cec73cf51a97becd8457ffa4407a81e4 Mon Sep 17 00:00:00 2001
From: Esben Haabendal <esben.haabendal@huawei.com>
Date: Fri, 24 Sep 2021 14:53:41 +0200
Subject: [PATCH] libqrcodegencpp: Recipe for building libqrcodegencpp C++
 library

Signed-off-by: Esben Haabendal <esben.haabendal@huawei.com>
---
 .../libqrcodegen/libqrcodegencpp_1.7.0.bb     | 25 +++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 meta-ohos-staging/recipes-graphics/libqrcodegen/libqrcodegencpp_1.7.0.bb

diff --git a/meta-ohos-staging/recipes-graphics/libqrcodegen/libqrcodegencpp_1.7.0.bb b/meta-ohos-staging/recipes-graphics/libqrcodegen/libqrcodegencpp_1.7.0.bb
new file mode 100644
index 00000000..65256b4c
--- /dev/null
+++ b/meta-ohos-staging/recipes-graphics/libqrcodegen/libqrcodegencpp_1.7.0.bb
@@ -0,0 +1,25 @@
+# SPDX-FileCopyrightText: Huawei Inc.
+#
+# SPDX-License-Identifier: Apache-2.0
+
+SUMMARY = "QR Code generator library"
+DESCRIPTION = "This project aims to be the best, clearest QR Code generator library in multiple languages. The primary goals are flexible options and absolute correctness. Secondary goals are compact implementation size and good documentation comments."
+AUTHOR = "Project Nayuki"
+HOMEPAGE = "https://www.nayuki.io/page/qr-code-generator-library"
+SECTION = "libs"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://qrcodegen.cpp;beginline=4;endline=21;md5=842e38efabbb76f96a6436248ce83149"
+
+SRC_URI = "git://github.com/nayuki/QR-Code-generator.git;protocol=https"
+SRCREV = "4d13c303dc878ffae8df6d0e0a7513fe860a092c"
+
+S = "${WORKDIR}/git/cpp"
+
+do_install () {
+    install -D -t ${D}${libdir} -m 644 ${S}/libqrcodegencpp.a
+    install -D -t ${D}${bindir} -m 755 ${S}/QrCodeGeneratorDemo
+    install -D -t ${D}${includedir} -m 644 ${S}/qrcodegen.hpp
+}
+
+PACKAGES =+ "${PN}-demo"
+FILES_${PN}-demo = "${bindir}/QrCodeGeneratorDemo"
-- 
GitLab