pine

The pine programming language.


pine

/

install.sh

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
#!/usr/bin/env bash
set -e

BUILD_TYPE="Debug"

if [[ $# > 0 ]]; then
  if [[ $1 == "-d" ]]; then
    BUILD_TYPE="Debug"
  elif [[ $1 == "-r" ]]; then
    BUILD_TYPE="Release"
  else
    printf "usage: ./install.sh [-d|-r]\n";
    exit 1
  fi
fi

# source environment variables
source ./env.sh

if [[ ${BUILD_TYPE} == "Debug" ]]; then
  ./build.sh -d
  cd build/debug

  printf "\nInstalling ${APP}\n"
  sudo make install

elif [[ ${BUILD_TYPE} == "Release" ]]; then
  ./build.sh -r
  cd build/release

  printf "\nInstalling ${APP}\n"
  sudo make install
fi
Back to Top