Installing on 32bit debian stable requires installation from source, since the deb files are 64 bits. The build.sh fails, since there's no lib32z1 and lib32ncurses5 in debian stable.
The following patch is now integrated in the github repository, still other 32bit distributions may require a similar change:
21a22,25
> if [ -n "`grep 8.6 /etc/debian_version`" ] && [ -z "`uname -m | grep x86_64`" ]; then
> OS=DebianJessie32bit
> fi
>
33c37
< Ubuntu|Debian)
---
> Ubuntu|Debian|DebianJessie32bit)
35,36c39,45
< sudo apt-get install -y libtool libudev-dev automake autoconf \
< ant curl lib32z1 lib32ncurses5
---
> if [ $OS==DebianJessie32bit ]; then
> sudo apt-get install -y libtool libudev-dev automake autoconf \
> ant curl
> else
> sudo apt-get install -y libtool libudev-dev automake autoconf \
> ant curl lib32z1 lib32ncurses5
> fi