# Depends on cairo
# Depends on harfbuzz

# Exit on error:
set -e

wget http://ftp.gnome.org/pub/GNOME/sources/pango/1.36/pango-1.36.0.tar.xz
tar xf pango-1.36.0.tar.xz
cd pango-1.36.0

./configure \
    --prefix=/usr \
    --sysconfdir=/etc

make
make install

cd ..
exit 0
