From c686428b324dacc1c0cc9cdfd62405231c7a6148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 3 Sep 2022 13:51:44 +0200 Subject: [PATCH] kcolorpicker: Initial add 0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-graphics/kcolorpicker/kcolorpicker.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 recipes-graphics/kcolorpicker/kcolorpicker.bb diff --git a/recipes-graphics/kcolorpicker/kcolorpicker.bb b/recipes-graphics/kcolorpicker/kcolorpicker.bb new file mode 100644 index 00000000..bfc8e55b --- /dev/null +++ b/recipes-graphics/kcolorpicker/kcolorpicker.bb @@ -0,0 +1,17 @@ +SUMMARY = "Qt based Color Picker with popup menu" +HOMEPAGE = "https://github.com/ksnip/kColorPicker" +LICENSE = "LGPL-3.0-only" +LIC_FILES_CHKSUM = "file://LICENSE;md5=a9a621b5a1b8f702c605093d657b550c" + +SRC_URI = "git://github.com/ksnip/kColorPicker.git;branch=master;protocol=https" +SRCREV = "15e16374e51153006d3400cb88066d5272698743" +PV = "0.2.0" +S = "${WORKDIR}/git" + +DEPENDS = " \ + qtbase \ +" + +inherit cmake_qt5_extra pkgconfig + +EXTRA_OECMAKE += "-DBUILD_SHARED_LIBS=ON"