-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tools] add hpatchlite-wrapper package.
- Loading branch information
1 parent
80e31d8
commit 20d72ca
Showing
3 changed files
with
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
menuconfig PKG_USING_HPATCHLITE | ||
bool "hpatchlite-wrapper: A lightweight and user-friendly wrapper for the HPatchLite." | ||
default n | ||
|
||
if PKG_USING_HPATCHLITE | ||
|
||
config PKG_HPATCHLITE_PATH | ||
string | ||
default "/packages/tools/hpatchlite" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_HPATCHLITE_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_HPATCHLITE_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_HPATCHLITE_VER | ||
string | ||
default "latest" if PKG_USING_HPATCHLITE_LATEST_VERSION | ||
|
||
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,30 @@ | ||
{ | ||
"name": "hpatchlite-wrapper", | ||
"description": "A lightweight and user-friendly wrapper for the HPatchLite.", | ||
"description_zh": "一个让HPatchLite差分还原算法库更好用的封装", | ||
"enable": "PKG_USING_HPATCHLITE", | ||
"keywords": [ | ||
"hpatchlite", | ||
"hpatch", | ||
"bsdiff", | ||
"bspatch", | ||
"patch" | ||
], | ||
"category": "tools", | ||
"author": { | ||
"name": "sulfurandcu", | ||
"email": "[email protected]", | ||
"github": "sulfurandcu" | ||
}, | ||
"license": "MIT", | ||
"repository": "https://github.com/sulfurandcu/hpatchlite-wrapper", | ||
"homepage": "https://github.com/sulfurandcu/hpatchlite-wrapper#readme", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/sulfurandcu/hpatchlite-wrapper.git", | ||
"filename": "hpatchlite-wrapper.zip", | ||
"VER_SHA": "main" | ||
} | ||
] | ||
} |