mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
hello world package
This commit is contained in:
@@ -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 |
@@ -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)
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Do something after package installation
|
||||
|
||||
exit 0
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Do something after package removal
|
||||
|
||||
exit 0
|
||||
Executable
+6
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Do something before package installation
|
||||
|
||||
exit 0
|
||||
Executable
+6
@@ -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
|
||||
Reference in New Issue
Block a user