Skip to content

Commit

Permalink
Merge pull request RT-Thread#1041 from xidongxu/master
Browse files Browse the repository at this point in the history
【添加】 ugui软件包
  • Loading branch information
Guozhanxin authored Sep 27, 2021
2 parents 20200bf + 4de3901 commit ba65bf8
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
1 change: 1 addition & 0 deletions multimedia/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ source "$PKGS_DIR/packages/multimedia/touchgfx2rtt/Kconfig"
source "$PKGS_DIR/packages/multimedia/NUemWin/Kconfig"
source "$PKGS_DIR/packages/multimedia/mp3player/Kconfig"
source "$PKGS_DIR/packages/multimedia/TinyJPEG/Kconfig"
source "$PKGS_DIR/packages/multimedia/ugui/Kconfig"

endmenu
28 changes: 28 additions & 0 deletions multimedia/ugui/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

# Kconfig file for package ugui
menuconfig PKG_USING_UGUI
bool "uGUI:Open source graphics library ugui ported to rtthread."
default n

if PKG_USING_UGUI

config PKG_UGUI_PATH
string
default "/packages/multimedia/ugui"

choice
prompt "Version"
default PKG_USING_UGUI_LATEST_VERSION
help
Select the package version

config PKG_USING_UGUI_LATEST_VERSION
bool "latest"
endchoice

config PKG_UGUI_VER
string
default "latest" if PKG_USING_UGUI_LATEST_VERSION

endif

28 changes: 28 additions & 0 deletions multimedia/ugui/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "ugui",
"description": "uGUI:Open source graphics library ugui ported to rtthread.",
"description_zh": "开源图形库ugui移植到rtthread。",
"enable": "PKG_USING_UGUI",
"keywords": [
"ugui"
],
"category": "multimedia",
"author": {
"name": "xidongxu",
"email": "[email protected]",
"github": "xidongxu"
},
"license": "unknown",
"repository": "https://github.com/xidongxu/ugui.git",
"icon": "unknown",
"homepage": "unknown",
"doc": "unknown",
"site": [
{
"version": "latest",
"URL": "https://github.com/xidongxu/ugui.git",
"filename": "ugui-master.zip",
"VER_SHA": "master"
}
]
}

0 comments on commit ba65bf8

Please sign in to comment.