Issue:Building and installing gexiv2 from the debian package does not install all files to the correct directories. The GExiv2-0.10.typelib does get placed in the correct location of /usr/lib/x86_64-linux-gnu/girepository-1.0 but at least two other files do not. Steps to Replicate:On a fresh install of Ubuntu 16.04 with git commit 325ec930a9964537da84bfdd86c1922e3d18029c sudo apt-get updatesudo apt-get upgradegit clone git://git.gnome.org/gexiv2sudo apt-get install automakesudo apt-get install exiv2sudo apt-get install gtk-doc-toolssudo apt-get install valacsudo apt-get install libgirepository1.0-devsudo apt-get install libexiv2-devsudo apt-get install python-gisudo apt-get install build-essentialsudo apt-get install debhelpersudo apt-get install devscriptssudo apt-get install libexpat1-devcd gexiv2sudo debuild -b -uc -ussudo dpkg -i ../gir1.2-gexiv2-0.10_0.10.4-0~jensge1~xenial4_amd64.deb pythonPython 2.7.12 (default, Nov 19 2016, 06:48:10)[GCC 5.4.0 20160609] on linux2Type "help", "copyright", "credits" or "license" for more information.>>> from gi.repository import GExiv2__main__:1: PyGIWarning: GExiv2 was imported without specifying a version first. Use gi.require_version('GExiv2', '0.10') before import to ensure that the right version gets loaded.>>> metadata = GExiv2.Metadata('ePm8wxr.jpg')** (process:12607): WARNING **: Failed to load shared library 'libgexiv2.so.2' referenced by the typelib: libgexiv2.so.2: cannot open shared object file: No such file or directoryTraceback (most recent call last):File "<stdin>", line 1, in <module>TypeError: GObject.__init__() takes exactly 0 arguments (1 given)This happens in python2.7 and python3running sudo find / -name GExiv2.py shows:/home/ubuntu/gexiv2/GExiv2.py/home/ubuntu/gexiv2/debian/tmp/usr/lib/python2.7/dist-packag es/gi/overrides/GExiv2.py /home/ubuntu/gexiv2/debian/tmp/usr/lib/python3/dist-packages /gi/overrides/GExiv2.py If gexiv2 is installed with sudo make install the output of sudo find / -name GExiv2.py shows:/usr/lib/python2.7/dist-packages/gi/overrides/GExiv2.py /usr/lib/python3/dist-packages/gi/overrides/GExiv2.py /home/ubuntu/gexiv2/GExiv2.pyIt looks like other files are also not put in the correct location such as libgexiv2.so.2.I found another person that is having a similar problem:Is there a step I am missing in building and installing from a debian package?Thanks,