default_pre_build &&
  # patch setup to show less menue options
  # and to skip menue if config is allready there
cd $SOURCE_DIRECTORY &&
patch -p0 < $SCRIPT_DIRECTORY/setup.diff &&
if [[ $RECONFIGURE ]] ;  then
  echo "executing setup.sh" &&
  ./setup.sh &&
  # Strip off crap from there configure wrapper
  local tmp=$(wc -l configure.sh | awk '{ print $1 }')
  LIRCOPTS="$(tail -n $(( $tmp - 4 )) configure.sh | head -n $(( $tmp - 5 )))  "
  persistent_add LIRCOPTS
fi
