fdo-trash-0.0.0.0: man/genManPages
#!/bin/bash
commands=(fdo-rm fdo-unrm fdo-purge)
if ! [[ -x dist/build/fdo-trash/fdo-trash ]]; then
runhaskell Setup.hs configure
runhaskell Setup.hs build
fi
for i in ${commands[*]}; do
ln -sf dist/build/fdo-trash/fdo-trash "$i"
help2man -N -I man/$i.txt ./$i > $i.1
rm $i
done