-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.0.0-beta.4: dotsig on Windows, Linux, MacOS with support for ECDSA…
… and PKCS
- Loading branch information
Showing
3 changed files
with
49 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ You can find the reference documentation [here][docs]. | |
This software is released under the [3-Clause BSD License](./LICENSE). | ||
|
||
[](#releases) | ||
[][download] | ||
[][docs] | ||
[](./LICENSE) | ||
[][issues] | ||
|
@@ -17,7 +18,7 @@ This software is released under the [3-Clause BSD License](./LICENSE). | |
The `dotsig` software is currently under active development and frequent changes | ||
to the source code *are to be expected* until the software reaches a stable tag. | ||
|
||
The latest release as of May 8th 2024 is: `v1.0.0-beta.3`. | ||
The latest release as of May 8th 2024 is: [`v1.0.0-beta.4`][download]. | ||
|
||
Use `dotsig -v` to find out the version installed on your system. | ||
|
||
|
@@ -77,7 +78,8 @@ package. This is currently the preferred method to build the `dotsig` software. | |
cd build | ||
cmake .. | ||
cmake --build . | ||
cmake --build . --target install | ||
cmake --build . --target install -- DESTDIR=stage | ||
cd stage/usr/local/bin | ||
``` | ||
|
||
:soon: In the short-to-mid-term future, I plan to enable the installations using | ||
|
@@ -97,6 +99,31 @@ cmake --build . --target install -- DESTDIR=stage | |
cd "stage/Program Files (x86)/dotsig/bin" | ||
``` | ||
|
||
#### Creating installer packages | ||
|
||
The `cpack` utility can be used to create installer packages for different OSs. | ||
It is more comfortable for the end-user to receive an installer package rather | ||
than being able to download only the binaries, for Windows it is also necessary | ||
because of the `botan-3.dll` file that is needed to run the software. | ||
|
||
To create an installer package *after* having built your source tree with one of | ||
the above commands, and using the corresponding operating system, use: | ||
|
||
```bash | ||
# MacOS .sh, .tar.gz, .pkg | ||
cpack -G "STGZ" | ||
cpack -G "TGZ" | ||
cpack -G "productbuild" | ||
|
||
# Linux .tar.gz, .deb, .rpm | ||
cpack -G "TGZ" | ||
cpack -G "DEB" | ||
cpack -G "RPM" | ||
|
||
# Windows .zip | ||
cpack -G "ZIP" | ||
``` | ||
|
||
### Installing the user manual | ||
|
||
A `man` user manual is available with `docs/dotsig.1`, you can install it on your | ||
|
@@ -159,7 +186,7 @@ Copyright 2024 Grégory Saive <[email protected]> for re:Software S.L. (resoftware.es) | |
Licensed under the [3-Clause BSD License](./LICENSE). | ||
|
||
[self]: https://github.com/evias/dotsig | ||
[download]: https://github.com/evias/dotsig/releases/tag/v1.0.0-beta.3 | ||
[download]: https://github.com/evias/dotsig/releases/tag/v1.0.0-beta.4 | ||
[docs]: https://evias.be/dotsig/v1.0.0-beta/index.html | ||
[issues]: https://github.com/evias/dotsig/issues | ||
[botan-src]: https://github.com/randombit/botan | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters