From 4714f77afdf92f71edcd2727c438957d75944226 Mon Sep 17 00:00:00 2001 From: D++ <82842780+dplusplus1024@users.noreply.github.com> Date: Wed, 8 Feb 2023 15:33:36 -0600 Subject: [PATCH] Add build instructions to README (#1573) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 2bd963f79d..80b8ec9357 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,20 @@ On Debian and Ubuntu, `ord` requires `libssl-dev` when building from source: sudo apt-get install libssl-dev ``` +You'll also need Rust: + +``` +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +``` + +To build `ord` from source: + +``` +git clone https://github.com/casey/ord.git +cd ord +cargo build --release +``` + Syncing -------