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