summaryrefslogtreecommitdiff
path: root/build-aux/meson/dist-theme.py
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/meson/dist-theme.py')
-rw-r--r--build-aux/meson/dist-theme.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/build-aux/meson/dist-theme.py b/build-aux/meson/dist-theme.py
new file mode 100644
index 0000000000..1582057113
--- /dev/null
+++ b/build-aux/meson/dist-theme.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python3
+
+import os
+from pathlib import PurePath
+import subprocess
+
+stylesheets = [ 'gtk/theme/Adwaita/Adwaita.css',
+ 'gtk/theme/Adwaita/Adwaita-dark.css',
+ 'gtk/theme/HighContrast/HighContrast.css',
+ 'gtk/theme/HighContrast/HighContrast-inverse.css' ]
+
+sourceroot = os.environ.get('MESON_SOURCE_ROOT')
+distroot = os.environ.get('MESON_DIST_ROOT')
+
+for stylesheet in stylesheets:
+ stylesheet_path = PurePath(stylesheet)
+ src = PurePath(sourceroot, stylesheet_path.with_suffix('.scss'))
+ dst = PurePath(distroot, stylesheet_path)
+ subprocess.call(['sassc', '-a', '-M', '-t', 'compact', src, dst])