diff options
Diffstat (limited to 'BUILD.md')
-rw-r--r-- | BUILD.md | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -16,13 +16,21 @@ c-toxcore is the only direct dependency. c-toxcore requires libsodium and libeve | |||
16 | In Debian sid, toxcore is in the main repos so it's very easy to build a deb package. | 16 | In Debian sid, toxcore is in the main repos so it's very easy to build a deb package. |
17 | 17 | ||
18 | ``` | 18 | ``` |
19 | apt install pkg-config build-essential make libtoxcore-dev dh-make | 19 | apt install pkg-config build-essential make libtoxcore-dev dh-make git python3-jinja2 python3-requests |
20 | git clone https://github.com/gjedeer/tuntox.git | 20 | git clone https://github.com/gjedeer/tuntox.git |
21 | cd tuntox | 21 | cd tuntox |
22 | dh_make --createorig -s | 22 | dh_make --createorig -s |
23 | dpkg-buildpackage -us -uc | 23 | dpkg-buildpackage -us -uc |
24 | ``` | 24 | ``` |
25 | 25 | ||
26 | It's even easier to just build the binary: | ||
27 | ``` | ||
28 | apt install pkg-config build-essential make libtoxcore-dev git python3-jinja2 python3-requests | ||
29 | git clone https://github.com/gjedeer/tuntox.git | ||
30 | cd tuntox | ||
31 | make | ||
32 | ``` | ||
33 | |||
26 | ## MacOS build | 34 | ## MacOS build |
27 | Basically the same as above but: | 35 | Basically the same as above but: |
28 | 36 | ||