summary refs log tree commit diff stats
path: root/README.org
diff options
context:
space:
mode:
authorAndinus <andinus@inventati.org>2020-03-15 00:38:48 +0530
committerAndinus <andinus@inventati.org>2020-03-15 00:38:48 +0530
commitf755d1dc3048c1cd08e83e09c7bb23b77418f29f (patch)
tree262943fec90316e59d140e7c61ebd9816c358ba9 /README.org
parent29e003c3eb5f927d9398c6b72aea5bb5641dc939 (diff)
downloadcetus-f755d1dc3048c1cd08e83e09c7bb23b77418f29f.tar.gz
Add installation instructions
Diffstat (limited to 'README.org')
-rw-r--r--README.org19
1 files changed, 19 insertions, 0 deletions
diff --git a/README.org b/README.org
index 1043f2f..9322062 100644
--- a/README.org
+++ b/README.org
@@ -55,3 +55,22 @@ latest release.
 |---------+----------------------------------------------------------------------|
 | v0.3.1  | https://diode.zone/videos/watch/0808c512-315a-4dab-9526-4a537e8c3257 |
 | v0.2.0  | https://diode.zone/videos/watch/12db31e1-3517-4888-ad06-55f3859447a1 |
+* Installation
+** Binary
+|                 | [[https://framagit.org/andinus/cetus/-/jobs/700844/artifacts/browse][Cetus Artifacts]]          |
+|-----------------+--------------------------|
+| OpenBSD amd64   | [[https://framagit.org/andinus/cetus/-/jobs/700844/artifacts/file/cetus-nasa-openbsd-amd64][cetus-nasa-openbsd-amd64]] |
+| GNU/Linux amd64 | [[https://framagit.org/andinus/cetus/-/jobs/700844/artifacts/file/cetus-nasa-linux-amd64][cetus-nasa-linux-amd64]]   |
+** From Source
+#+BEGIN_SRC sh
+# get master branch archive
+curl -o cetus-master.tar.gz \
+     https://framagit.org/andinus/cetus/-/archive/master/cetus-master.tar.gz
+
+# extract the archive
+tar -xzf cetus-master.tar.gz
+
+# install cetus
+cd cetus-master && \
+    go install ./cmd/cetus-nasa
+#+END_SRC