diff options
-rw-r--r-- | debian/control | 1 | ||||
-rw-r--r-- | debian/locale-gen | 31 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 35 insertions, 0 deletions
diff --git a/debian/control b/debian/control index 357b099..ade7f2e 100644 --- a/debian/control +++ b/debian/control @@ -25,6 +25,7 @@ Build-Depends: cmake, libgnome-control-center-dev, libtimezonemap1-dev, liburl-dispatcher1-dev, + locales, Standards-Version: 3.9.3 Homepage: https://launchpad.net/indicator-datetime # If you aren't a member of ~indicator-applet-developers but need to upload diff --git a/debian/locale-gen b/debian/locale-gen new file mode 100644 index 0000000..437dec5 --- /dev/null +++ b/debian/locale-gen @@ -0,0 +1,31 @@ +#!/bin/sh + +LOCPATH=`pwd`/locales +export LOCPATH + +[ -d $LOCPATH ] || mkdir -p $LOCPATH + +umask 022 + +echo "Generating locales..." +while read locale charset; do + case $locale in \#*) continue;; esac + [ -n "$locale" -a -n "$charset" ] || continue + echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`" + echo -n ".$charset" + echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'` + echo -n '...' + if [ -f $LOCPATH/$locale ]; then + input=$locale + else + input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'` + fi + localedef -i $input -c -f $charset $LOCPATH/$locale #-A /etc/locale.alias + echo ' done'; \ +done <<EOF +# Put the list of locales you need here: +en_GB.utf8 UTF-8 +en_US.utf8 UTF-8 +EOF + +echo "Generation complete." diff --git a/debian/rules b/debian/rules index 0e7a91f..ea10b93 100755 --- a/debian/rules +++ b/debian/rules @@ -14,3 +14,6 @@ override_dh_install: echo "X-Ubuntu-Gettext-Domain=indicator-datetime" >> $$d; \ done; +override_dh_auto_test: + sh debian/locale-gen + LOCPATH="$(CURDIR)/locales" dh_auto_test |