libunistring is a library that provides functions for manipulating Unicode strings and for manipulating C strings according to the Unicode standard.
This may take a while to build. Feel free to do something else while this is building.
Install libunistring by running the following commands:
./configure --prefix=/usr \
--disable-static \
--docdir=/usr/share/doc/libunistring-1.4.1 &&
make
Now, as the root user:
make install
Install lib32-libunistring by running the following commands:
make distclean &&
CC="gcc -m32" CXX="g++ -m32" \
PKG_CONFIG_PATH=/usr/lib32/pkgconfig \
./configure --prefix=/usr \
--libdir=/usr/lib32 \
--host=i686-pc-linux-gnu \
--disable-static &&
make
Now as the root user:
make DESTDIR=$PWD/DESTDIR install && cp -vr DESTDIR/usr/lib32/* /usr/lib32 && rm -rf DESTDIR && ldconfig
Run ./configure --help for a full list of options.
--disable-static: This
switch prevents installation of static versions of the libraries.