forked from AuroraMiddleware/gtk
Merge branch 'ebassi/dist-docs' into 'master'
build: Dist the API references See merge request GNOME/gtk!3375
This commit is contained in:
commit
d50d382032
39
build-aux/meson/dist-data.py
Normal file
39
build-aux/meson/dist-data.py
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import subprocess
|
||||||
|
|
||||||
|
from pathlib import PurePath
|
||||||
|
|
||||||
|
|
||||||
|
stylesheets = [
|
||||||
|
'gtk/theme/Adwaita/Adwaita.css',
|
||||||
|
'gtk/theme/Adwaita/Adwaita-dark.css',
|
||||||
|
'gtk/theme/HighContrast/HighContrast.css',
|
||||||
|
'gtk/theme/HighContrast/HighContrast-dark.css',
|
||||||
|
]
|
||||||
|
|
||||||
|
references = [
|
||||||
|
'docs/reference/gtk/gtk4',
|
||||||
|
'docs/reference/gsk/gsk4',
|
||||||
|
'docs/reference/gdk/gdk4',
|
||||||
|
'docs/reference/gdk/gdk4-wayland',
|
||||||
|
'docs/reference/gdk/gdk4-x11',
|
||||||
|
]
|
||||||
|
|
||||||
|
sourceroot = os.environ.get('MESON_SOURCE_ROOT')
|
||||||
|
buildroot = os.environ.get('MESON_BUILD_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])
|
||||||
|
|
||||||
|
for reference in references:
|
||||||
|
src_path = os.path.join(buildroot, reference)
|
||||||
|
if os.path.isdir(src_path):
|
||||||
|
dst_path = os.path.join(distroot, reference)
|
||||||
|
shutil.copytree(src_path, dst_path)
|
@ -1,19 +0,0 @@
|
|||||||
#!/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-dark.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])
|
|
@ -818,7 +818,7 @@ else
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
if not meson.is_subproject()
|
if not meson.is_subproject()
|
||||||
meson.add_dist_script('build-aux/meson/dist-theme.py')
|
meson.add_dist_script('build-aux/meson/dist-data.py')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if host_machine.system() != 'windows'
|
if host_machine.system() != 'windows'
|
||||||
|
Loading…
Reference in New Issue
Block a user