You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This agreement gives Blockchain Commons, LLC the permission it needs in order to accept my contributions into its open software project and to manage the intellectual property in that project over time.
18
+
19
+
## License
20
+
21
+
I hereby license Blockchain Commons, LLC to:
22
+
23
+
1. do anything with my contributions that would otherwise infringe my copyright in them
24
+
25
+
2. do anything with my contributions that would otherwise infringe patents that I can or become able to license
26
+
27
+
3. sublicense these rights to others on any terms they like
28
+
29
+
## Reliability
30
+
31
+
I understand that Blockchain Commons will rely on this license. I may not revoke this license.
32
+
33
+
## Awareness
34
+
35
+
I promise that I am familiar with legal rules, like ["work made for hire" rules](http://worksmadeforhire.com), that can give employers and clients ownership of intellectual property in work that I do. I am also aware that legal agreements I might sign, like confidential information and invention assignment agreements, will usually give ownership of intellectual property in my work to employers, clients, and companies that I found. If someone else owns intellectual property in my work, I need their permission to license it.
36
+
37
+
## Copyright Guarantee
38
+
39
+
I promise not to offer contributions to the project that contain copyrighted work that I do not have legally binding permission to contribute under these terms. When I offer a contribution with permission, I promise to document in the contribution who owns copyright in what work, and how they gave permission to contribute it. If I later become aware that one of my contributions may have copyrighted work of others that I did not have permission to contribute, I will notify Blockchain Commons, in confidence, immediately.
40
+
41
+
## Patent Guarantee
42
+
43
+
I promise not to offer contributions to the project that I know infringe patents of others that I do not have permission to contribute under these terms.
44
+
45
+
## Open Source Guarantee
46
+
47
+
I promise not to offer contributions that contain or depend on the work of others, unless that work is available under a license that [Blue Oak Council rates bronze or better](https://blueoakconcil.org/list), such as the MIT License, two- or three-clause BSD License, the Apache License Version 2.0, or the Blue Oak Model License 1.0.0. When I offer a contribution containing or depending on others' work, I promise to document in the contribution who licenses that work, along with copies of their license terms.
48
+
49
+
## Disclaimers
50
+
51
+
***As far as the law allows, my contributions come as is, without any warranty or condition. Other than under [Copyright Guarantee](#copyright-guarantee), [Patent Guarantee](#patent-guarantee), or [Open Source Guarantee](#open-source-guarantee), I will not be liable to anyone for any damages related to my contributions or this contributor license agreement, under any kind of legal claim.***
52
+
53
+
---
54
+
55
+
To sign this Contributor License Agreement, fill in `$name`, `$email`, and `$date` above. Then sign using GPG using the following command `gpg --armor --clearsign --output CLA.YOURGITHUBNAME.YOURGPGFINGERPRINT.asc CLA.md`, then either submit your signed Contributor License Agreement to this repo as a GPG signed Pull Request or email it to [[email protected]](mailto:[email protected]).
This sequence does *not* install the dependencies from submodules; instead they must be installed in the usual places on the build system, otherwise the `./configure` step below will fail.
@@ -149,6 +177,7 @@ $ ./configure
149
177
$ make
150
178
$ sudo make install
151
179
```
180
+
*Note:* On Linux the first step is `./configure CC=clang-10 CXX=clang++-10`
You can now freely use `seedtool` inside `MSYS2 MinGW 64-bit` console.
47
+
48
+
49
+
### Running Seedtool as a Native Windows App
50
+
51
+
To be able to use `seedtool` as a native app on Windows outside `msys2/mingw64`, you have to expose 3 files to the system: `seedtool.exe`, `libc++.dll` and `libunwind.dll` which all reside in `C:\msys64\mingw64\bin`. So go ahead and add that folder to the `Windows PATH` by the following command in `Windows Cmd`:
52
+
53
+
```bash
54
+
set PATH=%PATH%;C:\msys64\mingw64\bin
55
+
```
56
+
57
+
That's it. Now you can use `seedtool` as a native Windows app in the Windows command line tool.
58
+
59
+
60
+
*Note:* If you want to pipe seedtool ouput into a QR code generator, you could use:
0 commit comments