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
- update readme
- remove old obsolete repos from readme, use github actions to create releases and packages
- reproducible build job
- build tests for 3 different variants
- small lint warn fix. Will do more linting and analyzing on code soon without touching any functionality.
Instead of using conan you can link against system provided gmp. Install `libgmp-dev` on deb distros or `gmp-devel` on rpm distros. For 32bit builds, CMake will not warn you if you are missing 32bit glibc and GMP, you must install them manually first (CentOS/Fedora: `glibc-devel.i686` and `gmp-devel.i686`).
40
+
38
41
```
39
-
conan install . -if ./build
40
42
cmake -G "Unix Makefiles" -B./build
41
43
cd build && make && make install
42
44
```
43
45
44
-
## Building using system dependencies
45
-
Instead of using conan you can link against system provided gmp. Install `libgmp-dev` on deb distros or `gmp-devel` on rpm distros. For 32bit builds, CMake will not warn you if you are missing 32bit glibc and GMP, you must install them manually first (CentOS/Fedora: `glibc-devel.i686` and `gmp-devel.i686`).
46
+
#### Using conan
47
+
If you are using pyenv or building python3 from source, make sure you have the following packages installed first:
After invoking CMake, cd to build folder and generate them with `cpack -G "DEB"` and `cpack -G "RPM"`.
54
60
You can then use `gdebi` to do a local install of .deb with automatic dependency resolution or `yum localinstall` on rpm distros. For dnf it's `dnf install <name>.rpm`.
55
61
56
-
## Hosted Linux repositories
57
-
DEB and RPM repositories are maintained with best effort.
58
-
59
-
### Debian 8 and 9 (amd64)
60
-
1. To `/etc/apt/sources.list` add:
61
-
62
-
#### 9
63
-
```
64
-
#apt.xpam.pl
65
-
deb http://apt.xpam.pl/debian9/ bnetdocs-stretch main
66
-
```
67
-
#### 8
68
-
```
69
-
#apt.xpam.pl
70
-
deb http://apt.xpam.pl/debian8/ bnetdocs-jessie main
0 commit comments