mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 13:32:50 -05:00
Manual Changelog versioning
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
dms (0.6.2ppa3) questing; urgency=medium
|
||||
dms (1.0.0ppa4) questing; urgency=medium
|
||||
|
||||
* Rebuild for packaging fixes (ppa3)
|
||||
* Rebuild for packaging fixes (ppa4)
|
||||
|
||||
-- Avenge Media <AvengeMedia.US@gmail.com> Sun, 23 Nov 2025 00:40:41 -0500
|
||||
-- Avenge Media <AvengeMedia.US@gmail.com> Wed, 10 Dec 2025 12:56:23 -0500
|
||||
|
||||
@@ -1 +1 @@
|
||||
dms_0.6.2ppa3_source.buildinfo x11 optional
|
||||
dms_1.0.0ppa4_source.buildinfo x11 optional
|
||||
|
||||
@@ -29,10 +29,15 @@ override_dh_auto_build:
|
||||
# Extract source tarball for QML files
|
||||
tar -xzf dms-source.tar.gz
|
||||
# Find the extracted directory (it might have various names)
|
||||
# and create a symlink to expected name for consistent install
|
||||
SOURCE_DIR=$$(find . -maxdepth 1 -type d -name "DankMaterialShell*" | head -n1); \
|
||||
if [ -n "$$SOURCE_DIR" ]; then \
|
||||
ln -sf $$SOURCE_DIR DankMaterialShell-$(BASE_VERSION); \
|
||||
# and rename it to the expected BASE_VERSION name for consistent install
|
||||
SOURCE_DIR=$$(find . -maxdepth 1 -type d -name "DankMaterialShell-*" ! -name "DankMaterialShell-$(BASE_VERSION)" | head -n1); \
|
||||
if [ -n "$$SOURCE_DIR" ] && [ "$$SOURCE_DIR" != "./DankMaterialShell-$(BASE_VERSION)" ]; then \
|
||||
echo "Renaming $$SOURCE_DIR to DankMaterialShell-$(BASE_VERSION)"; \
|
||||
mv "$$SOURCE_DIR" DankMaterialShell-$(BASE_VERSION); \
|
||||
elif [ ! -d "DankMaterialShell-$(BASE_VERSION)" ]; then \
|
||||
echo "ERROR: No DankMaterialShell directory found after extraction!"; \
|
||||
ls -la; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
override_dh_auto_install:
|
||||
|
||||
Reference in New Issue
Block a user