The Debian mentor packages has some issues building on Ubuntu:
It's installing gconf/schemas/ into /usr/etc which is not the expected location, it should be /usr/share .
debian/rules is long, it is much easier to read with a simple 3 lines default debhelper 7 rules:
#!/usr/bin/make -f
%:
dh $@
The Debian mentor packages has some issues building on Ubuntu:
It's installing gconf/schemas/ into /usr/etc which is not the expected location, it should be /usr/share .
debian/rules is long, it is much easier to read with a simple 3 lines default debhelper 7 rules:
#!/usr/bin/make -f
%:
dh $@
Thanks