|
15 | 15 | from .base import Base
|
16 | 16 | from .build_target import BuildTarget
|
17 | 17 |
|
18 |
| -# Please keep these in sync with the packages on the wiki, using the instructions below |
19 |
| -# https://github.com/servo/servo/wiki/Building |
| 18 | +# Please keep these in sync with the packages in the book, using the instructions below |
| 19 | +# https://book.servo.org/hacking/setting-up-your-environment.html |
20 | 20 |
|
21 | 21 | # https://packages.debian.org
|
22 | 22 | # https://packages.ubuntu.com
|
23 | 23 | # 1. open devtools
|
24 | 24 | # 2. paste in the whole APT_PKGS = [...]
|
25 | 25 | # 3. copy(`sudo apt install ${APT_PKGS.join(" ")}`)
|
26 |
| -# 4. paste into https://github.com/servo/servo/wiki/Building#debian-based-distributions |
| 26 | +# 4. paste into https://github.com/servo/book/edit/main/src/hacking/setting-up-your-environment.md |
27 | 27 | APT_PKGS = [
|
28 | 28 | 'build-essential', 'ccache', 'clang', 'cmake', 'curl', 'g++', 'git',
|
29 | 29 | 'gperf', 'libdbus-1-dev', 'libfreetype6-dev', 'libgl1-mesa-dri',
|
|
39 | 39 | 'libharfbuzz-dev', 'liblzma-dev', 'libudev-dev', 'libunwind-dev',
|
40 | 40 | 'libvulkan1', 'libx11-dev', 'libxcb-render0-dev', 'libxcb-shape0-dev',
|
41 | 41 | 'libxcb-xfixes0-dev', 'libxmu-dev', 'libxmu6', 'libegl1-mesa-dev',
|
42 |
| - 'llvm-dev', 'm4', 'xorg-dev', 'libxkbcommon0', "libxkbcommon-x11-0" |
| 42 | + 'llvm-dev', 'm4', 'xorg-dev', 'libxkbcommon0', "libxkbcommon-x11-0", |
| 43 | + 'tshark', |
43 | 44 | ]
|
44 | 45 |
|
45 | 46 | # https://packages.fedoraproject.org
|
46 | 47 | # 1. open devtools
|
47 | 48 | # 2. paste in the whole DNF_PKGS = [...]
|
48 | 49 | # 3. copy(`sudo dnf install ${DNF_PKGS.join(" ")}`)
|
49 |
| -# 4. paste into https://github.com/servo/servo/wiki/Building#fedora |
| 50 | +# 4. paste into https://github.com/servo/book/edit/main/src/hacking/setting-up-your-environment.md |
50 | 51 | DNF_PKGS = ['libtool', 'gcc-c++', 'libXi-devel', 'freetype-devel',
|
51 | 52 | 'libunwind-devel', 'mesa-libGL-devel', 'mesa-libEGL-devel',
|
52 | 53 | 'glib2-devel', 'libX11-devel', 'libXrandr-devel', 'gperf',
|
|
58 | 59 | 'gstreamer1-plugins-good', 'gstreamer1-plugins-bad-free-devel',
|
59 | 60 | 'gstreamer1-plugins-ugly-free', 'libjpeg-turbo-devel',
|
60 | 61 | 'zlib-ng', 'libjpeg-turbo', 'vulkan-loader', 'libxkbcommon',
|
61 |
| - 'libxkbcommon-x11'] |
| 62 | + 'libxkbcommon-x11', 'wireshark-cli'] |
62 | 63 |
|
63 | 64 | # https://voidlinux.org/packages/
|
64 | 65 | # 1. open devtools
|
65 | 66 | # 2. paste in the whole XBPS_PKGS = [...]
|
66 | 67 | # 3. copy(`sudo xbps-install ${XBPS_PKGS.join(" ")}`)
|
67 |
| -# 4. paste into https://github.com/servo/servo/wiki/Building#void-linux |
| 68 | +# 4. paste into https://github.com/servo/book/edit/main/src/hacking/setting-up-your-environment.md |
68 | 69 | XBPS_PKGS = ['libtool', 'gcc', 'libXi-devel', 'freetype-devel',
|
69 | 70 | 'libunwind-devel', 'MesaLib-devel', 'glib-devel', 'pkg-config',
|
70 | 71 | 'libX11-devel', 'libXrandr-devel', 'gperf', 'bzip2-devel',
|
|
0 commit comments