# exo depends on URI::Escape perl module
# exo depends on URI::file perl module
# exo depends on URI::URL perl module
# xfce4-panel depends on libwnck
# xfce4-session depends on iceauth
# xfce4-power-manager-1.2.0 depends on libnotify

# thunar-volman depends on gudev

# Exit on error:
set -e

wget http://archive.xfce.org/xfce/4.10/fat_tarballs/xfce-4.10.tar.bz2
tar xf xfce-4.10.tar.bz2
cd src

for FILE in \
    libxfce4util-4.10.0 \
    xfconf-4.10.0 \
    libxfce4ui-4.10.0 \
    garcon-0.2.0 \
    exo-0.8.0 \
    xfce4-panel-4.10.0 \
    Thunar-1.4.0 \
    xfce4-settings-4.10.0 \
    xfce4-session-4.10.0 \
    xfdesktop-4.10.0 \
    xfwm4-4.10.0 \
    xfce4-appfinder-4.10.0 \
    gtk-xfce-engine-3.0.0 \
    tumbler-0.1.25 \
    xfce4-dev-tools-4.10.0 \
    xfce4-power-manager-1.2.0

#    thunar-volman-0.8.0 \

do {
    echo ''
    echo "Building $FILE..."
    echo ''
    tar xf $FILE.tar.bz2
    cd $FILE
    ./configure --prefix=
    make install
    cd ..
};

done;

cd ..

echo ''
echo 'You may now be interested to install the faenza icon theme.'
echo ''

exit 0
