Skip to content

Commit d5ad515

Browse files
author
Andres Almiray
committed
Update readme
1 parent 6929bd2 commit d5ad515

File tree

1 file changed

+46
-1
lines changed

1 file changed

+46
-1
lines changed

README.adoc

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,30 @@ If a specific build file is given (*-b*, *--build-file* for Gradle; *-f*, *--fil
3232

3333
== Installation
3434

35+
=== Homebrew
36+
37+
Use the kordamp/homebrew-tap
38+
39+
[source]
40+
----
41+
$ brew install kordamp/tap/gum
42+
----
43+
44+
=== Snapcraft
45+
46+
[source]
47+
----
48+
$ sudo snap install --classic gum
49+
----
50+
51+
=== Manually
52+
53+
Download the pre-compiled binaries from the link:https://github.com/kordamp/gm/releases[releases page] and copy to the desired location.
54+
55+
=== Installing from Source
56+
3557
You need Go installed on your system, follow link:https://golang.org/dl/[this link] to download and install.
36-
Once go is instaklled you can invoke the following command to install Gum
58+
Once Go is installed you can invoke the following command to install Gum
3759

3860
[source,go]
3961
----
@@ -45,3 +67,26 @@ variable, which defaults to `$GOPATH/bin` or `$HOME/go/bin` if the `GOPATH`
4567
environment variable is not set. Make sure that `$HOME/go/bin` is in your
4668
`$PATH`. If `GOPATH` is defined then `$GOPATH/bin` must be in your `$PATH`.
4769

70+
=== Compiling from Source
71+
72+
You need Go installed on your system, follow link:https://golang.org/dl/[this link] to download and install.
73+
Once Go is installed you can invoke the following command to install Gum
74+
75+
.Clone:
76+
[source]
77+
----
78+
$ git clone https://github.com/kordamp/gm
79+
$ cd gm
80+
----
81+
82+
.Build:
83+
[source]
84+
----
85+
$ go build gm.go
86+
----
87+
88+
.Verify:
89+
[source]
90+
----
91+
$ ./gm -gv
92+
----

0 commit comments

Comments
 (0)