#!/bin/sh
echo
if test `id -u` != "0"; then echo "You aren't root, sorry..."; exit 1; fi
if ! test -e /usr/local/thekompany/bin/tkc-loader; then echo "You don't have thekompany-support installed..."; exit 1; fi
read -p "Where do you have Python installed? (PREFIX) [/usr]:" PREFIX
if test -z $PREFIX; then PREFIX="/usr/"; fi
printf "\nInstalling PyQt modules..."
chown -R root.root *
cp -a bin include lib $PREFIX || echo False && echo Ok
echo
