# Exit on error:
set -e

wget http://downloads.sourceforge.net/pcmanfm/libfm-1.2.3.tar.xz
tar xf libfm-1.2.3.tar.xz
cd libfm-1.2.3

./configure \
    --prefix= \
    --with-extra-only \
    --with-gtk=no

make install
cd ..
rm -rf libfm-1.2.3
rm libfm-1.2.3.tar.xz

exit 0
