From 22dc900bd24511982d542e8e6471f376406b7359 Mon Sep 17 00:00:00 2001 From: Zastian Pretorius Date: Sat, 23 Oct 2021 21:50:04 +0200 Subject: [PATCH] added install instructions in README.org --- README.org | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.org b/README.org index 0168883..95b20db 100644 --- a/README.org +++ b/README.org @@ -3,3 +3,24 @@ * README This is a simple project to help sort your files on linux written in c++. +* Install +1. Coppy the repo + #+BEGIN_SRC + git clone https://github.com/ZastianPretorius/fsorter.git + #+END_SRC +2. cd into the the fsorter folder + #+BEGIN_SRC + . cd fsorter + #+END_SRC +3. Generate a make files + #+BEGIN_SRC + cmake . + #+END_SRC +4. Compile the project + #+BEGIN_SRC + make + #+END_SRC +5. install the project (will require sudo) + #+BEGIN_SRC + sudo make install + #+END_SRC