#!/bin/sh

INSTALL_DIR=/etc/apt
if [ ! -e /$INSTALL_DIR/sources.list ]; then
	echo Copying sources.list..
	echo "deb http://repository.maemo.org/ diablo/sdk free non-free" >> $INSTALL_DIR/sources.list
	echo "deb-src http://repository.maemo.org/ diablo/sdk free" >> $INSTALL_DIR/sources.list
	echo "deb http://repository.maemo.org/ diablo/tools free non-free" >> $INSTALL_DIR/sources.list
        echo "deb-src http://repository.maemo.org/ diablo/tools free" >> $INSTALL_DIR/sources.list
fi

