#!/bin/sh
if [ "x$1" = "x" ]; then
        echo "Usage: $0 major.minor.pico"
        exit 1
fi
wget http://osdn.dl.sourceforge.net/sourceforge/lesstif/lesstif-$1.tar.gz
wget http://osdn.dl.sourceforge.net/sourceforge/lesstif/lesstif-$1.tar.bz2
exit 0
