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
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/dpkg/default.mk
%:
dh $@
override_dh_auto_build:
./update-locale.sh
./make-zip.sh
override_dh_install:
set -e; for x in espresso@coadmunkee.github.com/locale/*; do \
install -d debian/tmp/usr/share/locale/$$(basename $$x)/LC_MESSAGES; \
install -m644 $$x/LC_MESSAGES/*.mo debian/tmp/usr/share/locale/$$(basename $$x)/LC_MESSAGES; \
done
dh_install
|