# Exit on error:
set -e

wget http://sourceforge.net/projects/psmisc/files/psmisc/psmisc-22.20.tar.gz
tar xf psmisc-22.20.tar.gz
cd psmisc-22.20

./configure \
    --prefix=/usr \
    --exec-prefix=""

make
make install

cd ..
exit 0
