diff --git a/osmon-deb/DEBIAN/control b/osmon-deb/DEBIAN/control new file mode 100644 index 0000000..b2d2020 --- /dev/null +++ b/osmon-deb/DEBIAN/control @@ -0,0 +1,8 @@ +Package: osmon +Version: 1.0.0 +Section: base +Priority: optional +Architecture: amd64 +Maintainer: Daniel Debny debekgithub@gmail.com +Description: Osmon - command-line system monitoring tool + diff --git a/osmon-deb/build-deb.sh b/osmon-deb/build-deb.sh new file mode 100755 index 0000000..61e4b96 --- /dev/null +++ b/osmon-deb/build-deb.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Define the current directory as the base directory for the osmon package +BASE_DIR=$(pwd) + +# Build the osmon.deb package +dpkg-deb --build "$BASE_DIR" + +mv ../osmon-deb.deb "$BASE_DIR/osmon.deb" + +echo "The osmon.deb package has been successfully created in $BASE_DIR" diff --git a/osmon-deb/osmon.deb b/osmon-deb/osmon.deb new file mode 100644 index 0000000..f20485f Binary files /dev/null and b/osmon-deb/osmon.deb differ diff --git a/osmon.deb b/osmon.deb new file mode 100644 index 0000000..f20485f Binary files /dev/null and b/osmon.deb differ