Skip to content

Commit

Permalink
package/cutekeyboard: new package
Browse files Browse the repository at this point in the history
CuteKeyboard is a Qt virtual keyboard plugin for embedded applications

Signed-off-by: Angelo Compagnucci <[email protected]>
Acked-by: Andrea Ricchi <[email protected]>
[Arnout:
 - add DEVELOPERS entry;
 - fixed the title in the .mk file;
 - use select instead of depends on;
 - with the above, add depends on QT5 and QT5_JSCORE.
]
Signed-off-by: Arnout Vandecappelle <[email protected]>
  • Loading branch information
angeloc authored and arnout committed Oct 15, 2023
1 parent 25e60fb commit 0aaeae2
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 0 deletions.
1 change: 1 addition & 0 deletions DEVELOPERS
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ F: package/apparmor/
F: package/corkscrew/
F: package/cups/
F: package/cups-filters/
F: package/cutekeyboard/
F: package/fail2ban/
F: package/grep/
F: package/htpdate/
Expand Down
1 change: 1 addition & 0 deletions package/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -1589,6 +1589,7 @@ menu "Graphics"
source "package/cairomm/Config.in"
source "package/cairomm1_14/Config.in"
source "package/chipmunk/Config.in"
source "package/cutekeyboard/Config.in"
source "package/exempi/Config.in"
source "package/exiv2/Config.in"
source "package/fltk/Config.in"
Expand Down
21 changes: 21 additions & 0 deletions package/cutekeyboard/Config.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
config BR2_PACKAGE_CUTEKEYBOARD
bool "cutekeyboard"
depends on BR2_PACKAGE_QT5
depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE # qt5declarative
select BR2_PACKAGE_QT5DECLARATIVE
select BR2_PACKAGE_QT5DECLARATIVE_QUICK
select BR2_PACKAGE_QT5QUICKCONTROLS2
help
CuteKeyboard is a Qt virtual keyboard plugin for
embedded applications.

https://amarula.github.io/cutekeyboard/

if BR2_PACKAGE_CUTEKEYBOARD

config BR2_PACKAGE_CUTEKEYBOARD_EXAMPLES
bool "cutekeyboard examples"
help
Compile also application example

endif
3 changes: 3 additions & 0 deletions package/cutekeyboard/cutekeyboard.hash
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Locally computed
sha256 8cbaddc5fbf479d5e20fc88228e9af5928fa5e588052ee496c2f2efbe2afc510 cutekeyboard-afacc3210b75d7e0de27dcc4c0f2bed0212cc4c7.tar.gz
sha256 bdde6ec2ae2686623c0bb414bfb8bd731b314beff2264c602116ea60dd65964d LICENSE
18 changes: 18 additions & 0 deletions package/cutekeyboard/cutekeyboard.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
################################################################################
#
# cutekeyboard
#
################################################################################

CUTEKEYBOARD_VERSION = afacc3210b75d7e0de27dcc4c0f2bed0212cc4c7
CUTEKEYBOARD_SITE = $(call github,amarula,cutekeyboard,$(CUTEKEYBOARD_VERSION))
CUTEKEYBOARD_DEPENDENCIES = qt5declarative qt5quickcontrols2
CUTEKEYBOARD_INSTALL_STAGING = YES
CUTEKEYBOARD_LICENSE = MIT
CUTEKEYBOARD_LICENSE_FILES = LICENSE

ifeq ($(BR2_PACKAGE_CUTEKEYBOARD_EXAMPLES),y)
CUTEKEYBOARD_CONF_OPTS += CONFIG+=BUILD_EXAMPLES
endif

$(eval $(qmake-package))

0 comments on commit 0aaeae2

Please sign in to comment.