Add debian packaging
Marble installation script / build (push) Has been cancelled

This commit is contained in:
2026-03-29 03:36:03 -07:00
parent 2aeb348f19
commit 7e9b7e12c0
4 changed files with 48 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
marble-shell-theme (48.3.2) stable; urgency=medium
* Initial VesperOS packaging of Marble GNOME Shell theme 48.3.2.
* Installs all colour variants (red, yellow, green, blue, purple, gray)
in both light and dark mode to /usr/share/themes/.
-- VesperOS Desktop Team <contact@oxmc.me> Sun, 29 Mar 2026 00:00:00 +0000
+18
View File
@@ -0,0 +1,18 @@
Source: marble-shell-theme
Section: gnome
Priority: optional
Maintainer: VesperOS Desktop Team <contact@oxmc.me>
Build-Depends: debhelper-compat (= 13), python3 (>= 3.10)
Standards-Version: 4.6.0
Rules-Requires-Root: no
Package: marble-shell-theme
Architecture: all
Depends: ${misc:Depends}, gnome-shell (>= 46)
Recommends: gnome-shell-extension-user-themes
Description: Marble GNOME Shell theme for VesperOS
A modern, material-inspired GNOME Shell theme with multiple colour accents
and both light and dark modes.
.
Installs all standard colour variants (red, yellow, green, blue, purple,
gray) in both light and dark mode to /usr/share/themes/.
Vendored Executable
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/make -f
PKG_DIR = $(CURDIR)/debian/marble-shell-theme
THEMES_DIR = $(PKG_DIR)/usr/share/themes
STAGING = $(CURDIR)/debian/staging
%:
dh $@
override_dh_auto_build:
mkdir -p $(STAGING)/bin
printf '#!/bin/sh\necho "GNOME Shell 48"\n' > $(STAGING)/bin/gnome-shell
chmod +x $(STAGING)/bin/gnome-shell
cd $(CURDIR) && HOME=$(STAGING) PATH=$(STAGING)/bin:$(PATH) python3 install.py --all
override_dh_install:
mkdir -p $(THEMES_DIR)
cp -r $(STAGING)/.themes/Marble-* $(THEMES_DIR)/
override_dh_auto_clean:
rm -rf $(STAGING)
dh_auto_clean
+1
View File
@@ -0,0 +1 @@
3.0 (native)