#!/bin/sh # Start hybbxd only. Build and install with CMake (see README). # # Default install (source tree): ./bin/hybbx-start # Prefix install: /usr/local/hybbx/hybbx-start (or $HOME/hybbx/…) # Dev (no install): ./scripts/hybbx.sh # # Detached: hybbx-start --screen | --tmux [--attach] set -e self="${0#./}" case "$self" in /*) script_path="$self" ;; *) script_path="$(pwd)/$self" ;; esac script_dir="$(cd "$(dirname "$script_path")" && pwd)" script_name="$(basename "$script_path")" # Installed layout: /hybbx-start + /hybbxd (./bin or /hybbx) if [ "$script_name" = "hybbx-start" ] && [ -x "$script_dir/hybbxd" ]; then prefix="$script_dir" config="${HYBBX_CONFIG:-$prefix/hybbx.ini}" binary="$script_dir/hybbxd" export HYBBX_ROOT="${HYBBX_ROOT:-$prefix}" cd "$prefix" if [ ! -f "$config" ]; then echo "Config not found: $config" >&2 exit 1 fi if [ "$#" -eq 0 ]; then exec "$binary" -c "$config" fi exec "$binary" -c "$config" "$@" fi # Explicit or known install roots root="$(cd "$script_dir/.." && pwd)" if [ -n "$HYBBX_ROOT" ]; then prefix="$HYBBX_ROOT" elif [ -x "$root/bin/hybbxd" ]; then prefix="$root/bin" elif [ -x "/usr/local/hybbx/hybbxd" ]; then prefix="/usr/local/hybbx" elif [ -n "$HOME" ] && [ -x "$HOME/hybbx/hybbxd" ]; then prefix="$HOME/hybbx" else prefix="" fi if [ -n "$prefix" ]; then config="${HYBBX_CONFIG:-$prefix/hybbx.ini}" binary="$prefix/hybbxd" if [ -x "$binary" ] && [ -f "$config" ]; then export HYBBX_ROOT="${HYBBX_ROOT:-$prefix}" cd "$prefix" if [ "$#" -eq 0 ]; then exec "$binary" -c "$config" fi exec "$binary" -c "$config" "$@" fi fi # Development tree (repo checkout, no cmake --install yet) config="${HYBBX_CONFIG:-$root/local/hybbx.ini}" build="$root/build/src/hybbxd" if [ -f "$config" ] && [ -x "$build" ]; then export HYBBX_ROOT="${HYBBX_ROOT:-$root}" cd "$root" if [ "$#" -eq 0 ]; then exec "$build" -c "$config" fi exec "$build" -c "$config" "$@" fi echo "HyBBX not found." >&2 echo "Build and install (default → ./bin):" >&2 echo " cmake -B build -DCMAKE_BUILD_TYPE=Release" >&2 echo " cmake --build build" >&2 echo " cmake --install build" >&2 echo " ./bin/hybbx-start" >&2 echo "System prefix:" >&2 echo " cmake -B build -DCMAKE_INSTALL_PREFIX=/usr/local" >&2 echo " cmake --build build && sudo cmake --install build" >&2 echo " /usr/local/hybbx/hybbx-start" >&2 exit 1