diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2022-12-08 11:03:13 +0200 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2022-12-08 11:37:07 +0200 |
commit | 27fb62f4ffe9e97d27026d4f9dfa9ad751d4a8d8 (patch) | |
tree | ca3f0258143918c8832c921eaffb000eea64ccdd | |
download | windows10-debian-27fb62f4ffe9e97d27026d4f9dfa9ad751d4a8d8.tar.gz |
Windows10 theme 2022.11.17.git.04e1e87
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 46 | ||||
-rw-r--r-- | debian/copyright | 6 | ||||
-rwxr-xr-x | debian/rules | 20 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/windows10-cinnamon.install | 1 | ||||
-rw-r--r-- | debian/windows10-gnome-shell.install | 1 | ||||
-rw-r--r-- | debian/windows10-gtk2.install | 1 | ||||
-rw-r--r-- | debian/windows10-gtk3.install | 1 | ||||
-rw-r--r-- | debian/windows10-gtk4.install | 1 | ||||
-rw-r--r-- | debian/windows10-metacity.install | 1 | ||||
-rw-r--r-- | debian/windows10-xfce4.install | 2 |
12 files changed, 86 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..11a741e --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +windows10 (2022.11.17.git.04e1e87-0pin1) unstable; urgency=medium + + * Initial release. + + -- Igor Pashev <pashev.igor@gmail.com> Thu, 08 Dec 2022 11:37:04 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..4337ddb --- /dev/null +++ b/debian/control @@ -0,0 +1,46 @@ +Source: windows10 +Homepage: https://github.com/B00merang-Project/Windows-10 +Section: misc +Priority: extra +Maintainer: Igor Pashev <pashev.igor@gmail.com> +Build-Depends: debhelper-compat (= 13) + + +Package: windows10-gtk2 +Architecture: all +Depends: ${misc:Depends} +Description: Windows10 GTK2 theme + +Package: windows10-gtk3 +Architecture: all +Depends: windows10-icons, ${misc:Depends} +Description: Windows10 GTK3 theme + +Package: windows10-gtk4 +Architecture: all +Depends: windows10-icons, ${misc:Depends} +Description: Windows10 GTK4 theme + +Package: windows10-gnome-shell +Architecture: all +Depends: windows10-icons, windows10-gtk4 (= ${source:Version}), ${misc:Depends} +Enhances: gnome-shell +Description: Windows10 Gnome Shell theme + +Package: windows10-metacity +Architecture: all +Depends: ${misc:Depends} +Enhances: metacity +Description: Windows10 Metacity theme + +Package: windows10-cinnamon +Architecture: all +Depends: windows10-icons, ${misc:Depends} +Description: Windows10 Cinnamon theme + +Package: windows10-xfce4 +Architecture: all +Depends: windows10-icons, windows10-gtk3 (= ${source:Version}), ${misc:Depends} +Enhances: xfwm4 +Description: Windows10 XFCE4 theme + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..eee0c07 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,6 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ + +Files: * +Copyright: no-info-found +License: GPL-3 + diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..9251312 --- /dev/null +++ b/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +%: + dh $@ + +GIT_REPO := https://github.com/B00merang-Project/Windows-10.git +DEBIAN_PATH := $(abspath $(dir $(firstword $(MAKEFILE_LIST)))) +PACKAGE := $(shell dpkg-parsechangelog -l$(DEBIAN_PATH)/changelog | awk '/^Source:/ {print $$2}') +SRC_VERSION := $(shell dpkg-parsechangelog -l$(DEBIAN_PATH)/changelog | awk '/^Version:/ {sub(/-[^-]*/, "", $$2); print $$2}') +GIT_REVISION := $(shell echo $(SRC_VERSION) | sed -r 's,.+git\.(\w+).*,\1,') +TARBALL := $(PACKAGE)_$(SRC_VERSION).orig.tar.xz +.PHONY: get-orig-source +get-orig-source: + rm -rf get-orig-source $(TARBALL) && mkdir get-orig-source + git clone $(GIT_REPO) get-orig-source/$(PACKAGE)-$(SRC_VERSION) + git -C get-orig-source/$(PACKAGE)-$(SRC_VERSION) checkout $(GIT_REVISION) + find get-orig-source/$(PACKAGE)-$(SRC_VERSION) -name '.*' -print0 | xargs -0 --no-run-if-empty rm -rfv + tar cJf $(TARBALL) -C get-orig-source $(PACKAGE)-$(SRC_VERSION) + rm -rf get-orig-source + @echo " "$(TARBALL)" created; move it to the right destination to build the package" diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/windows10-cinnamon.install b/debian/windows10-cinnamon.install new file mode 100644 index 0000000..da076ee --- /dev/null +++ b/debian/windows10-cinnamon.install @@ -0,0 +1 @@ +cinnamon /usr/share/themes/Windows10/ diff --git a/debian/windows10-gnome-shell.install b/debian/windows10-gnome-shell.install new file mode 100644 index 0000000..024f45b --- /dev/null +++ b/debian/windows10-gnome-shell.install @@ -0,0 +1 @@ +gnome-shell /usr/share/themes/Windows10/ diff --git a/debian/windows10-gtk2.install b/debian/windows10-gtk2.install new file mode 100644 index 0000000..6453460 --- /dev/null +++ b/debian/windows10-gtk2.install @@ -0,0 +1 @@ +gtk-2.0 /usr/share/themes/Windows10/ diff --git a/debian/windows10-gtk3.install b/debian/windows10-gtk3.install new file mode 100644 index 0000000..3f629da --- /dev/null +++ b/debian/windows10-gtk3.install @@ -0,0 +1 @@ +gtk-3* /usr/share/themes/Windows10/ diff --git a/debian/windows10-gtk4.install b/debian/windows10-gtk4.install new file mode 100644 index 0000000..57aba2a --- /dev/null +++ b/debian/windows10-gtk4.install @@ -0,0 +1 @@ +gtk-3.0 /usr/share/themes/Windows10/ diff --git a/debian/windows10-metacity.install b/debian/windows10-metacity.install new file mode 100644 index 0000000..9087033 --- /dev/null +++ b/debian/windows10-metacity.install @@ -0,0 +1 @@ +metacity-1 /usr/share/themes/Windows10/ diff --git a/debian/windows10-xfce4.install b/debian/windows10-xfce4.install new file mode 100644 index 0000000..37c4341 --- /dev/null +++ b/debian/windows10-xfce4.install @@ -0,0 +1,2 @@ +xfce-notify-4.0 /usr/share/themes/Windows10/ +xfwm4* /usr/share/themes/Windows10/ |