1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
%:
dh $@
# Let's not use autotools for this simple package.
# It is easier to maintain all chasen dictionaries in this way.
#
# utf8: directories to hold UTF-8 converted data/document
override_dh_auto_clean:
rm -rf utf8
override_dh_auto_configure:
# do nothing
override_dh_auto_build:
# convert base data to UTF-8
debian/utf8dict
override_dh_auto_test:
# do nothing
override_dh_compress:
dh_compress -X.pdf
override_dh_auto_install:
# do nothing
override_dh_installchangelogs:
dh_installchangelogs -X ChangeLog utf8/changelog
|