by roundabout, Saturday, 6 March 2021, 23:37:33 (1615073853), pushed by roundabout, Sunday, 11 May 2025, 13:22:59 (1746969779)
Author identity: nana-4 <hnmaigo@gmail.com>
7098bc19256182a805269f4f3cfc6b27a9b28ece
meson.build
@@ -12,6 +12,8 @@ theme_base_dir = join_paths(get_option('datadir'), 'themes', theme_base_name)
sassc = find_program('sassc')
sassc_opts = ['-M', '-t', 'expanded']
sh = find_program('sh')
themes = []
foreach color: get_option('colors')
foreach size: get_option('sizes')
src/cinnamon/meson.build
@@ -57,7 +57,7 @@ foreach theme: themes
# Install it while renaming to a valid name
meson.add_install_script(
'sh', '-c', 'cp "@0@" "@1@"'.format(
sh, '-c', 'cp "@0@" "@1@"'.format(
cinnamon_css.full_path(),
join_paths('$MESON_INSTALL_DESTDIR_PREFIX', cinnamon_dir, 'cinnamon.css'),
),
src/gnome-shell/meson.build
@@ -135,7 +135,7 @@ foreach theme: themes
# Install it while renaming to a valid name
meson.add_install_script(
'sh', '-c', 'cp "@0@" "@1@"'.format(
sh, '-c', 'cp "@0@" "@1@"'.format(
gnome_shell_css.full_path(),
join_paths('$MESON_INSTALL_DESTDIR_PREFIX', gnome_shell_dir, 'gnome-shell.css'),
),
src/gtk-3.0/meson.build
@@ -77,7 +77,7 @@ foreach theme: themes
# Install it while renaming to a valid name
meson.add_install_script(
'sh', '-c', 'cp "@0@" "@1@"'.format(
sh, '-c', 'cp "@0@" "@1@"'.format(
gtk3_css.full_path(),
join_paths('$MESON_INSTALL_DESTDIR_PREFIX', gtk3_dir, 'gtk@0@.css'.format(gtk3_variant)),
),
src/gtk-4.0/meson.build
@@ -87,7 +87,7 @@ foreach theme: themes
# Install it while renaming to a valid name
meson.add_install_script(
'sh', '-c', 'cp "@0@" "@1@"'.format(
sh, '-c', 'cp "@0@" "@1@"'.format(
gtk4_css.full_path(),
join_paths('$MESON_INSTALL_DESTDIR_PREFIX', gtk4_dir, 'gtk@0@.css'.format(gtk4_variant)),
),