From 203be3ce4683960d8dfc0eb85d4902da0c312556 Mon Sep 17 00:00:00 2001 From: marat-yusupov Date: Wed, 17 Apr 2024 17:12:05 +0300 Subject: [PATCH] Add instructions for install dino via homebrew update macos docs --- BUILD_MACOS.md | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/BUILD_MACOS.md b/BUILD_MACOS.md index 35923428..54b62969 100644 --- a/BUILD_MACOS.md +++ b/BUILD_MACOS.md @@ -20,7 +20,26 @@ cd dino ## Install with Brew -TODO +To build Dino using this formula, follow these instructions: + +``` +brew tap mxlgv/homebrew-dino +brew install mxlgv/homebrew-dino/dino +``` + +You can start the Dino client installed via homebrew with the following command: + +``` +./opt/homebrew/Cellar/dino/3/bin/dino +``` + +You can create a shortcut with a symbolic link pointing to this file, so that you can open it in a more convenient way. + +If you encounter an error related to rpath, you need to add `DYLD_LIBRARY_PATH` to the environment variable: + +``` +export DYLD_LIBRARY_PATH=/opt/homebrew/Cellar/dino/3/lib +``` ## Notifications @@ -30,4 +49,6 @@ There is a draft PR which can be used to enable notifications: https://github.co In order to run Dino, just run in the build folder: -`./dino` +``` +./dino +```