equal
deleted
inserted
replaced
85 ``` |
85 ``` |
86 |
86 |
87 Note: 'build directory' must exist before calling build_in_docker.sh, otherwise |
87 Note: 'build directory' must exist before calling build_in_docker.sh, otherwise |
88 Docker will create it as root user. Be sure to create it again if you delete it. |
88 Docker will create it as root user. Be sure to create it again if you delete it. |
89 |
89 |
90 Resulting installer is Beremiz-1.2.exe in 'build directory'. |
90 Resulting installer is Beremiz-${timestamp}.exe in 'build directory'. |
91 |
91 |
92 ### Manhole ### |
92 ### Manhole ### |
93 |
93 |
94 Once Docker image ready, the scripts [enter_docker.sh](enter_docker.sh) and |
94 Once Docker image ready, the scripts [enter_docker.sh](enter_docker.sh) and |
95 [enter_docker_as_root.sh](enter_docker_as_root.sh) let you issue build |
95 [enter_docker_as_root.sh](enter_docker_as_root.sh) let you issue build |
118 hg clone https://hg.beremiz.org/beremiz_public_dist |
118 hg clone https://hg.beremiz.org/beremiz_public_dist |
119 cd ~/build |
119 cd ~/build |
120 make -f ~/src/beremiz_public_dist/Makefile DIST=snap |
120 make -f ~/src/beremiz_public_dist/Makefile DIST=snap |
121 |
121 |
122 ``` |
122 ``` |
|
123 Resulting snap package is sources/beremiz_${version}_${platform}.snap. |
|
124 It can be installed this way: |
123 |
125 |
|
126 ``` |
|
127 sudo snap install sources/beremiz_1.3-beta2_amd64.snap --dangerous --devmode |
|
128 ``` |
|
129 |