initial commit

This commit is contained in:
2020-08-04 23:09:05 -04:00
commit fecee5afab
55 changed files with 2784 additions and 0 deletions

4
script/compile_schemas.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/sh -eu
echo "Compiling gsettings schemas..."
glib-compile-schemas "${MESON_INSTALL_DESTDIR_PREFIX}/share/glib-2.0/schemas"

5
script/meson.build Normal file
View File

@@ -0,0 +1,5 @@
# only gui or cli need gschema
if build_gui or build_cli
valadoc = find_program('glib-compile-schemas')
meson.add_install_script('compile_schemas.sh')
endif