From 5441169a9b4c5c18000f4492731471a7ae345b3b Mon Sep 17 00:00:00 2001 From: tohurtv Date: Mon, 17 Nov 2025 07:25:29 -0700 Subject: [PATCH] First Commit --- debian/changelog | 5 +++++ debian/control | 15 +++++++++++++++ debian/postinst | 4 ++++ debian/rules | 4 ++++ 4 files changed, 28 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100755 debian/postinst create mode 100755 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..4a8ae50 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +rakuos-gaming-meta (1.0.0-1rakuos2) unstable; urgency=medium + + * Initial release. + + -- Tohur Sun, 09 Nov 2025 19:58:10 -0700 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..9d024cd --- /dev/null +++ b/debian/control @@ -0,0 +1,15 @@ +Source: rakuos-gaming-meta +Section: metapackages +Priority: optional +Maintainer: RakuOS Team +Build-Depends: debhelper-compat (= 13), +Standards-Version: 4.6.2 + +Package: rakuos-gaming-meta +Architecture: all +Depends: ${misc:Depends}, steam, lutris, heroic, wine, protontricks, gamemode, goverlay, mangohud +Description: RankuOS Gaming Meta Package + A meta-package that installs the essential gaming tools, and optimizations for RankuOS. + Includes: + - Steam, Lutris, Heroic Launcher + - Utilities like GameMode, MangoHud, vkBasalt. diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 0000000..e263cd4 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,4 @@ +#!/bin/bash +set -e +echo "🎮 RankuOS Gaming Environment installed!" +systemctl --user enable --now gamemoded.service || true diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ac856e8 --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f +# Simple dh (debhelper) build rules file +%: + dh $@