-
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.
Merge pull request #178 from IGEL-Community:SpeedCrunch-App-Recipe
SpeedCrunch App Recipe
- Loading branch information
Showing
2 changed files
with
152 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -425,3 +425,155 @@ exit 0 | |
**Q:** How to keep applications up to date? | ||
|
||
**A:** [CP build automation](https://github.com/IGEL-Community/IGEL-Custom-Partitions/tree/master/utils/cp_build_automation) | ||
|
||
----- | ||
|
||
## Building an OS 12 App Recipe for IGEL App Creator Portal -- SpeedCrunch | ||
|
||
- [GitHub App Recipes - SpeedCrunch](https://github.com/IGEL-Community/IGEL-OS-APP-RECIPES/tree/main/APP_Source/Apps/speedcrunch) | ||
|
||
![image-howto-add-applications-01](Images/HOWTO-Add-Applications-01.png) | ||
|
||
### app.json | ||
|
||
```bash linenums="1" | ||
{ | ||
"categories": [ | ||
"Miscellaneous" | ||
], | ||
"icons": { | ||
"app": "app.png", | ||
"monochrome": "monochrome.png" | ||
}, | ||
"name": "speedcrunch", | ||
"author": "The IGEL community", | ||
"vendor": "SpeedCrunch Team", | ||
"public_version": "0.12.0-6", | ||
"release": "", | ||
"summary": { | ||
"en": "SpeedCrunch (Community)" | ||
}, | ||
"version": "0.12.0" | ||
} | ||
``` | ||
|
||
### data/app.png | ||
|
||
Application icon color | ||
|
||
### data/changelogs/en | ||
|
||
```bash linenums="1" | ||
speedcrunch (0.12.0-6) unstable; urgency=medium | ||
|
||
* d/patches: use Sphinx built-in i18n support for extensions | ||
- Closes: #1026816 | ||
|
||
-- Felix Krull <[email protected]> Fri, 23 Dec 2022 19:24:30 +0100 | ||
|
||
speedcrunch (0.12.0-5.1) unstable; urgency=medium | ||
|
||
* Non-maintainer upload. | ||
* Fix docs build with Sphinx >= 4. (Closes: #997366) | ||
- Add 0007-fix-docs-build-with-Sphinx-4.patch | ||
|
||
-- Felix Geyer <[email protected]> Sat, 29 Oct 2022 09:59:26 +0200 | ||
|
||
speedcrunch (0.12.0-5) unstable; urgency=medium | ||
|
||
* d/patches, d/control: fix docs build with Sphinx >= 2.0 | ||
- Closes: #955058 | ||
* d/patches: use CMake's CXX_STANDARD property | ||
* d/copyright: add separate notice for appdata files | ||
* d/control: | ||
- bump Standards-Version | ||
- bump debhelper compat version | ||
-- Felix Krull <[email protected]> Sun, 19 Apr 2020 14:13:08 +0200 | ||
speedcrunch (0.12.0-4) unstable; urgency=medium | ||
* d/control: | ||
- update VCS-* urls | ||
- bump Standards-Version | ||
- use python3-sphinx instead of python-sphinx | ||
* d/compat: bump debhelper compat version to 10 | ||
* d/patches, d/rules: build the HTML manual in a separate step | ||
- Rebuilding the HTML manual during the build has proven fragile. Instead, | ||
the manual is now built in a separate step and the application build is | ||
pointed at the result of that build. | ||
- Closes: #897531 | ||
-- Felix Krull <[email protected]> Mon, 14 May 2018 16:52:42 +0000 | ||
``` | ||
### data/config/config.param | ||
```bash linenums="1" | ||
<sessions> | ||
<speedcrunch%> | ||
<name> | ||
value=<SpeedCrunch> | ||
</name> | ||
<icon> | ||
value=<speedcrunch> | ||
</icon> | ||
extends_base=<sessions.base%> | ||
</speedcrunch%> | ||
<speedcrunch0> | ||
</speedcrunch0> | ||
node_action=<wm_postsetup> | ||
</sessions> | ||
``` | ||
### data/descriptions/en | ||
```bash linenums="1" | ||
A high-precision scientific calculator | ||
SpeedCrunch is a fast, high-precision scientific calculator. It features a syntax-highlighted scrollable display and is designed to be fully used via keyboard. | ||
``` | ||
### data/monochrome.png | ||
Application icon monochrome | ||
### igel/debian.json | ||
```bash linenums="1" | ||
[ | ||
{ | ||
"package": "speedcrunch" | ||
} | ||
] | ||
``` | ||
### igel/install.json | ||
```bash linenums="1" | ||
[ | ||
{ | ||
"source": ".*", | ||
"excludes": [ | ||
"usr/share/applications.*", | ||
"usr/share/doc.*", | ||
"usr/share/man.*", | ||
"usr/share/metainfo.*" | ||
] | ||
} | ||
] | ||
``` | ||
### input/all/config/sessions/speedcrunch0 | ||
```bash linenums="1" | ||
#!/bin/bash | ||
speedcrunch | ||
``` | ||
### README.md | ||
```bash linenums="1" | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.