VaccineApp / vaccine

GTK3 imageboard client
GNU General Public License v3.0
35 stars 2 forks source link

make: Settings schema is not installed #67

Open cweiske opened 2 years ago

cweiske commented 2 years ago

After cloning the git repo, installing all dependencies and then running make I get the following error:

(vaccine:183752): GLib-GIO-ERROR **: 09:15:54.307: Settings schema 'org.vaccine.app' is not installed

The README doesn't say how to install it, and the Makefile does not have an install task.

I could fix that error with:

$ mkdir -p /usr/local/share/glib-2.0/schemas/
$ cp data/org.vaccine.app.gschema.xml /usr/local/share/glib-2.0/schemas/
$ /usr/bin/glib-compile-schemas /usr/local/share/glib-2.0/schemas/

... but I do not know if this is the correct solution. Please add a note to the readme, or provide an install task.