#!/bin/sh
# SFLphone bin launcher script v 3
# Setup ld's environment

prefix=/usr
exec_prefix=/usr

export PA_ALSA_PLUGHW=1

message="Warning, you probably did not extract the archive in the / directory,
you must edit this script ($0) and change SFLPHONE_DIR to the correct location.
/usr/bin must contain the provided libraries."
if [ ! -d ${SFLPHONE_DIR} ]; then
  echo $message
  exit 1
fi

# Let's try to go..
binaryqtname=sflphone-qt
binaryqt=/usr/bin/${binaryqtname}
binarycliname=sflphone-cli
binarycli=/usr/bin/${binarycliname}
if [ "$1" != "--text" ]; then
  if [ -x ${binaryqt} ]; then
    exec $binaryqt $@
  else
    echo "Could not find the ${binaryqtname} executable in /usr/bin !"
    exit 1
  fi
else 
  if [ -x ${binarycli} ]; then
    shift
    SFLPHONE_CORE_DIR=/usr/bin exec $binarycli $@
  else
    echo "Could not find the ${binarycliname} executable in /usr/bin !"
    exit 1
  fi
fi

# EOF
