From 472022f8cd06a48b42f4f99931a3230bc6c289e6 Mon Sep 17 00:00:00 2001 From: jokul Date: Sun, 12 Jul 2026 19:58:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0debian=E6=89=93?= =?UTF-8?q?=E5=8C=85=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 22 ++++++++++++++++++++++ debian/rules | 4 ++++ 4 files changed, 32 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/rules diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..99f6845 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +dde-graphics-driver-applet (1.0.0-1) unstable; urgency=medium + + * Initial release. + + -- Jokul Sat, 12 Jul 2025 00:00:00 +0800 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b1bd38b --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +13 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..e6f6a40 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: dde-graphics-driver-applet +Section: utils +Priority: optional +Maintainer: Jokul +Build-Depends: debhelper-compat (= 13), + cmake (>= 3.16), + g++, + qt6-base-dev, + qt6-tools-dev-tools, + libdtk6-core-dev, + libdtk6-widget-dev, + dde-shell-dev +Standards-Version: 4.6.0 +Homepage: https://github.com/linuxdeepin/dde-shell + +Package: dde-graphics-driver-applet +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, + deepin-graphics-driver-manager +Description: DDE Shell Graphics Driver Management Applet + Deepin graphics driver management applet for DDE Shell taskbar. + Provides GPU device detection, driver installation and switching functionality. diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..050e29a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ --buildsystem=cmake