mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
Current ibus versions use /usr/libexec in compliance with FHS 3.0. Since the ibus picks up the location from the xml file in `/usr/share/ibus/component`, this also works for older versions of ibus. The bug report also mentions a `<setup>` tag. However, this doesn't apply for Keyman because we don't have nor need a setup app. Closes #4259. Closes Debian bug 955230.
14 lines
249 B
Makefile
Executable file
14 lines
249 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
|
|
%:
|
|
dh $@ --with autoreconf
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
--libexecdir=/usr/libexec
|
|
|
|
override_dh_auto_test:
|
|
# run test but disable failing
|
|
-dh_auto_test
|