This commit is contained in:
Vendored
+7
@@ -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
|
||||
Vendored
+18
@@ -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/.
|
||||
+22
@@ -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
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
3.0 (native)
|
||||
Reference in New Issue
Block a user