# Exit on error:
set -e

wget https://github.com/IgnorantGuru/spacefm/archive/1.0.5.tar.gz
tar xf 1.0.5.tar.gz
cd spacefm-1.0.5

./configure \
    --prefix=/usr \
    --disable-video-thumbnails

make
make install

cd ..
exit 0
