1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%:
dh $@ --parallel --with autotools-dev,autoreconf
override_dh_auto_configure:
dh_auto_configure -- --sysconfdir=/etc/anthy
override_dh_clean:
debconf-updatepo
dh_clean -Xalt-cannadic/Makefile.orig
override_dh_install:
# cd $(CURDIR)/nokuno-dictionary-20120103-dfsg && \
for i in wikipedia social-ime ; do iconv -f UTF-8 -t EUC-JP $$i -c -o $$i.ctd; done
dh_install
|