Commit 0bf8f523048e5e9e8f4a4ed50d34e7c5a9730c59
1 parent
3e092e01
Exists in
master
and in
2 other branches
Adding notes about jhbuild.
Showing
1 changed file
with
21 additions
and
6 deletions
Show diff stats
README.md
@@ -136,8 +136,11 @@ Windows native with MSYS2 | @@ -136,8 +136,11 @@ Windows native with MSYS2 | ||
136 | make install | 136 | make install |
137 | ``` | 137 | ``` |
138 | 138 | ||
139 | -Building for macOS (using homebrew) | ||
140 | -=================================== | 139 | +Building for macOS |
140 | +================== | ||
141 | + | ||
142 | +Using homebrew | ||
143 | +-------------- | ||
141 | 144 | ||
142 | 1. Install [homebrew](https://brew.sh/) | 145 | 1. Install [homebrew](https://brew.sh/) |
143 | 146 | ||
@@ -161,12 +164,24 @@ Building for macOS (using homebrew) | @@ -161,12 +164,24 @@ Building for macOS (using homebrew) | ||
161 | brew link lib3270 | 164 | brew link lib3270 |
162 | ``` | 165 | ``` |
163 | 166 | ||
164 | -Uninstalling | ||
165 | ------------- | ||
166 | - | ||
167 | -1. To uninstall | 167 | +To uninstall |
168 | 168 | ||
169 | ```shell | 169 | ```shell |
170 | brew unlink lib3270 | 170 | brew unlink lib3270 |
171 | rm -fr "$(brew --cellar)/lib3270" | 171 | rm -fr "$(brew --cellar)/lib3270" |
172 | ``` | 172 | ``` |
173 | + | ||
174 | +Using jhbuild | ||
175 | +-------------- | ||
176 | + | ||
177 | +1. Install jhbuild | ||
178 | + | ||
179 | + https://wiki.gnome.org/Projects/GTK/OSX/Building | ||
180 | + | ||
181 | +2. build | ||
182 | + | ||
183 | + ```shell | ||
184 | + jhbuild --moduleset=https://raw.githubusercontent.com/PerryWerneck/lib3270/macos/mac/lib3270.modules build lib3270 | ||
185 | + ``` | ||
186 | + | ||
187 | + |