Commit 1e5c57d86d7d005549cdbb7ca15d72592797635f
1 parent
ad2421a1
Exists in
master
and in
4 other branches
Updating READ.me
Showing
1 changed file
with
26 additions
and
22 deletions
Show diff stats
README.md
1 | 1 | ||
2 | -GTK Based 3270 terminal emulator | ||
3 | -================================ | 2 | +## GTK Based 3270 terminal emulator |
4 | 3 | ||
5 | pw3270 is a modern, GTK-based, completely free tn3270 emulator. | 4 | pw3270 is a modern, GTK-based, completely free tn3270 emulator. |
6 | 5 | ||
@@ -8,38 +7,43 @@ Created originally for Banco do Brasil, it's now an official Brazilian Governmen | @@ -8,38 +7,43 @@ Created originally for Banco do Brasil, it's now an official Brazilian Governmen | ||
8 | 7 | ||
9 | See more details at https://softwarepublico.gov.br/social/pw3270/ | 8 | See more details at https://softwarepublico.gov.br/social/pw3270/ |
10 | 9 | ||
11 | -Installation repositories | ||
12 | -========================= | 10 | +## Installation |
13 | 11 | ||
14 | -The latest version packaged for many linux distributions can be found in SuSE Build Service (https://build.opensuse.org/project/show/home:PerryWerneck:pw3270) | 12 | +### Distributions |
15 | 13 | ||
16 | -Requirements | ||
17 | -============ | 14 | +openSUSE [package](https://build.opensuse.org/project/show/home:PerryWerneck:pw3270): |
18 | 15 | ||
19 | -GTK-3 | ||
20 | - https://www.gtk.org/ | 16 | +``` |
17 | +sudo zypper ar obs://home:PerryWerneck:pw3270 pw3270 | ||
18 | +sudo zypper ref | ||
19 | +sudo zypper in pw3270 | ||
20 | +``` | ||
21 | 21 | ||
22 | +## Requirements | ||
22 | 23 | ||
23 | -Building for Linux | ||
24 | -================== | 24 | +### GTK+ 3.20 or later |
25 | + https://www.gtk.org/ | ||
25 | 26 | ||
26 | 27 | ||
28 | +## Building for Linux | ||
27 | 29 | ||
28 | -Building for Windows | ||
29 | -=========================== | ||
30 | 30 | ||
31 | -Cross-compiling on SuSE Linux (Native or WSL) - The easier way! | ||
32 | ---------------------------------------------------------------- | ||
33 | 31 | ||
34 | -1. First add the MinGW Repositories for your SuSE version from: | 32 | +## Building for Windows |
35 | 33 | ||
36 | - * https://build.opensuse.org/project/show/windows:mingw:win32 | ||
37 | - * https://build.opensuse.org/project/show/windows:mingw:win64 | 34 | +### Cross-compiling on SuSE Linux (Native or WSL) - The easier way! |
38 | 35 | ||
39 | -2. Run the build script | ||
40 | - | ||
41 | - * get it from https://github.com/PerryWerneck/pw3270/blob/master/win/pack.sh | ||
42 | - * Run the build script: ./pack.sh --pre-reqs | 36 | +1. Add the MinGW Repositories |
43 | 37 | ||
38 | +``` | ||
39 | +sudo zypper ar obs://windows:mingw:win32 mingw32 | ||
40 | +sudo zypper ar obs://windows:mingw:win64 mingw64 | ||
41 | +sudo zypper ref | ||
42 | +``` | ||
44 | 43 | ||
44 | +2. Run the build script | ||
45 | 45 | ||
46 | +``` | ||
47 | +wget https://github.com/PerryWerneck/pw3270/blob/master/win/pack.sh | ||
48 | +./pack.sh --pre-reqs | ||
49 | +``` |