#!/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)
