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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# Make sure build is always done in a reproducible and working
# language environment
LC_ALL = C
export LC_ALL
IPKG=itagalog
%:
dh $@
override_dh_auto_configure: # No configuration needed
override_dh_auto_build:
gzip -9 -nc tl.dic > tagalog.mwl.gz
cp tl.aff tagalog.aff
override_dh_auto_clean:
rm -f tagalog.mwl.gz tagalog.aff
dh_auto_clean
override_dh_auto_install:
installdeb-ispell -p$(IPKG)
|