@@ -15,9 +15,8 @@ Make sure Raylib is installed and then:
1515Build from source manually
1616--------------------------
1717
18- Useful if the Pip build doesn’t work, or you want to contribute to the
19- project, or you want to skip building the static lib and just *use the
20- dynamic binding with your own dll *.
18+ Useful if the Pip build doesn’t work and you want to debug it, or you want to contribute to the
19+ project.
2120
2221.. attention ::
2322 If the Pip build doesn’t work, please submit a bug. (And if you have
@@ -140,8 +139,8 @@ Build
140139::
141140
142141 pip3 install cffi
143- rm -rf build raylib/static/ _raylib_cffi.*
144- python3 raylib/static/ build.py
142+ rm -rf build raylib/_raylib_cffi.*
143+ python3 raylib/build.py
145144
146145.. note :: (Optional) To update the Linux dynamic libs (names will be different on other platfroms):
147146
@@ -168,12 +167,12 @@ To build a complete set of libs for Python 3.6, 3.7, 3.8 and 3.9:
168167
169168::
170169
171- ./raylib/static/ build_multi.sh
170+ ./raylib/build_multi.sh
172171
173172.. warning ::
174173 pypi wont accept Linux packages unless they are built
175174 ``--plat-name manylinux2014_x86_64 `` so on linux please run
176- ``./raylib/static/ build_multi_linux.sh `` )
175+ ``./raylib/build_multi_linux.sh `` )
177176
178177.. TODO ::
179178 Separate the instructions for preparing the dynamic module
@@ -208,8 +207,8 @@ Build and install module.
208207::
209208
210209 pip3 install cffi
211- rm -rf build raylib/static/ _raylib_cffi.*
212- python3 raylib/static/ build.py
210+ rm -rf build raylib/_raylib_cffi.*
211+ python3 raylib/build.py
213212 pip3 install wheel
214213 python3 setup.py install
215214
0 commit comments