Dear Maintainer,
I am working on my liabray hkl and try to add gobject-introspection.
so during developpement I install the library into
/usr/local (the default prefix of autotools)
so my .gir and .typelib files are :
/usr/local/lib/girepository-1.0/Hkl-4.0.typelib
/usr/local/share/gir-1.0/Hkl-4.0.gir
and when I try to import the library from python
I get
In [1]: from gi.repository import Hkl
ERROR:root:Could not find any typelib for Hkl
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
/home/picca/Projets/hkl/<ipython-input-1-bf2b38d3a0a5> in <module>()
----> 1 from gi.repository import Hkl
ImportError: cannot import name Hkl
so, my question is
Can you configure the gobject-introspection, to look by default also for locally installed repository
thanks for your attention
Frederic