tekka
tekka

Build status

Individual-based simulator of pacific bluefin tuna.

Project page on GitHub

Requirements

  • Unix-like environment (macOS, Linux, WSL, MinGW on MSYS2, etc.)
  • C++17 compiler (clang++ >= Apple LLVM 12, g++ >= 8)
  • CMake (>= 3.15.0)

The following libraries are optional or automatically installed:

R interface

You can install and use this program via R package "tekkamaki".

Installation of command-line version

The easiest way is to use Homebrew. The following command installs tekka and all the dependencies:

brew install heavywatal/tap/tekka

Alternatively, you can get the source code from GitHub manually:

git clone https://github.com/heavywatal/tekka.git
cd tekka/
DESTINATION=${HOME}/local
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=$DESTINATION
cmake --build build -j 2
cmake --install build
PATH=${DESTINATION}/bin:$PATH