#!/bin/bash/
echo "You must be root to run this script"
CWD=$(pwd)

####Install the dependencies######
###All dependencies meet with VL7.0-standard base

####Install the Program######
cd /var/log/packages/
if [ -f libiec61883* ]
then
ls libiec61883*
echo Already installed
else
cd $CWD
cd ../
installpkg ./deps/*/*/libiec61883*txz
fi

cd /var/log/packages/
if [ -f libquicktime* ]
then
ls libquicktime*
echo Already installed
else
cd $CWD
cd ../
installpkg ./deps/*/*/libquicktime*txz
fi

cd /var/log/packages/
if [ -f kino-* ]
then
ls kino-*
echo Already installed
else
cd $CWD
cd ../
installpkg ./Programs/*/*/kino-*txz
fi
exit
