forked from buildroot/buildroot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
5 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |