File tree 5 files changed +67
-0
lines changed
5 files changed +67
-0
lines changed Original file line number Diff line number Diff line change @@ -217,5 +217,16 @@ make -j4 && make clean
217
217
./SerialTest
218
218
```
219
219
220
+ ## Install from the Linux software repository
221
+
222
+ ### Arch Linux
223
+ ``` bash
224
+ # Install the release
225
+ yay -S serialtest
226
+
227
+ # Install the development version
228
+ yay -S serialtest-git
229
+ ```
230
+
220
231
## Change Log
221
232
[ Change Log] ( CHANGELOG.md )
Original file line number Diff line number Diff line change @@ -217,5 +217,16 @@ make -j4 && make clean
217
217
./SerialTest
218
218
```
219
219
220
+ ## 通过 Linux 软件仓库安装
221
+
222
+ ### Arch Linux
223
+ ``` bash
224
+ # 安装发行版
225
+ yay -S serialtest
226
+
227
+ # 安装开发版
228
+ yay -S serialtest-git
229
+ ```
230
+
220
231
## 更新日志
221
232
[ 更新日志] ( ../CHANGELOG/CHANGELOG_zh_CN.md )
Original file line number Diff line number Diff line change
1
+ # Packing instructions | 打包说明
2
+
3
+ ` pack/aur ` instructions for the use of packaged files | 打包文件使用说明
4
+
5
+ ``` bash
6
+ ./
7
+ ├── io.github.wh201906.serialtest.desktop
8
+ └── io.github.wh201906.serialtest.metainfo.xml
9
+
10
+ ```
11
+
12
+ ``` io.github.wh201906.serialtest.desktop ``` is the desktop entry file | 桌面应用程序配置项
13
+ eg: ``` /usr/share/applications/io.github.wh201906.serialtest.desktop ```
14
+
15
+ ``` io.github.wh201906.serialtest.metainfo.xml ``` is the package metainfo file | 软件包描述文件
16
+ eg: ``` /usr/share/metainfo/io.github.wh201906.serialtest.metainfo.xml ```
Original file line number Diff line number Diff line change
1
+ [Desktop Entry]
2
+ Version =1.0
3
+ Type =Application
4
+
5
+ Name =SerialTest
6
+ Comment =SerialTest
7
+ Categories =Development;Electronics;
8
+
9
+ Icon =serialtest
10
+ Exec =serialtest
11
+ Terminal =false
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <component type =" desktop-application" >
3
+ <id >io.github.wh201906.serialtest</id >
4
+
5
+ <name >SerialTest</name >
6
+ <summary >SerialTest</summary >
7
+
8
+ <metadata_license >MIT</metadata_license >
9
+ <project_license >LGPL-3.0-only</project_license >
10
+
11
+ <description >
12
+ <p >
13
+ A cross-platform serial port test tool.
14
+ </p >
15
+ </description >
16
+
17
+ <launchable type =" desktop-id" >io.github.wh201906.serialtest.desktop</launchable >
18
+ </component >
You can’t perform that action at this time.
0 commit comments