hello world package

This commit is contained in:
2022-05-12 18:14:25 +02:00
parent 9e7c0b72d4
commit 0c33559a9b
12 changed files with 62 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
*.deb
Binary file not shown.

After

Width:  |  Height:  |  Size: 862 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

+21
View File
@@ -0,0 +1,21 @@
Package: hello-world
Version: 1.0.0
Maintainer: Tooloop Multimedia
Homepage: https://www.tooloop.de
Bugs: https://www.github.com/Tooloop/Tooloop-Packages
Section: tooloop/presentation
Architecture: amd64
Name: Hello World
Thumbnail: hello-world-thumbnail.jpg
Media: hello-world-image-1.jpg, hello-world-image-2.jpg, hello-world-image-3.jpg
Description: Example package skeleton
### Just an example
.
This package is meant as a bare example to get you started packaging your own
presentation. Use it as a skeleton. For more details, please see the
[README](https://github.com/Tooloop/Tooloop-Packages).
.
### Credits
.
Photos by [NASA](https://unsplash.com/@nasa?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)
on [Unsplash](https://unsplash.com/@nasa?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -e
# Do something after package installation
exit 0
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -e
# Do something after package removal
exit 0
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -e
# Do something before package installation
exit 0
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -e
# Do something before package removal
exit 0
@@ -0,0 +1,8 @@
#!/bin/bash
# here comes everything, you want Tooloop to run
# don't forget to put an "&" at the end of each line, e.g. xeyes &
xeyes &
exit 0
@@ -0,0 +1,8 @@
#!/bin/bash
# here comes everything, you need to stop the running presentation
# basically kill or stop everything you started in `start-presentation.sh`
kill $(pidof xeyes)
exit 0