Initial commit

This commit is contained in:
kramo
2025-11-28 19:14:39 +01:00
commit b6d7f70a93
32 changed files with 1171 additions and 0 deletions

17
data/icons/meson.build Normal file
View File

@@ -0,0 +1,17 @@
apps_dir = get_option('datadir') / 'icons' / 'hicolor' / '@0@' / 'apps'
install_data(f'@app_id@.svg', install_dir: apps_dir.format('scalable'))
install_data(f'@app_id@-symbolic.svg', install_dir: apps_dir.format('symbolic'))
resource = configure_file(
input: 'icons.gresource.xml.in',
output: '@BASENAME@',
configuration: conf,
)
gnome.compile_resources(
'icons',
resource,
gresource_bundle: true,
install: true,
install_dir: pkgdatadir,
)