BUILD.md 6.8 KB
Newer Older
1 2 3 4 5
# Build scrcpy

Here are the instructions to build _scrcpy_ (client and server).


6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
## Simple

If you just want to install the latest release from `master`, follow this
simplified process.

First, you need to install the required packages:

```bash
# for Debian/Ubuntu
sudo apt install ffmpeg libsdl2-2.0-0 adb wget \
                 gcc git pkg-config meson ninja-build \
                 libavcodec-dev libavformat-dev libavutil-dev libsdl2-dev
```

Then clone the repo and execute the installation script
([source](install_release.sh)):

```bash
git clone https://github.com/Genymobile/scrcpy
cd scrcpy
./install_release.sh
```

When a new release is out, update the repo and reinstall:

```bash
git pull
./install_release.sh
```

R
Romain Vimont 已提交
36 37 38 39 40 41
To uninstall:

```bash
sudo ninja -Cbuild-auto uninstall
```

42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
## Branches

### `master`

The `master` branch concerns the latest release, and is the home page of the
project on Github.


### `dev`

`dev` is the current development branch. Every commit present in `dev` will be
in the next release.

If you want to contribute code, please base your commits on the latest `dev`
branch.

59 60 61 62

## Requirements

You need [adb]. It is available in the [Android SDK platform
R
Romain Vimont 已提交
63
tools][platform-tools], or packaged in your distribution (`adb`).
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

On Windows, download the [platform-tools][platform-tools-windows] and extract
the following files to a directory accessible from your `PATH`:
 - `adb.exe`
 - `AdbWinApi.dll`
 - `AdbWinUsbApi.dll`

The client requires [FFmpeg] and [LibSDL2]. Just follow the instructions.

[adb]: https://developer.android.com/studio/command-line/adb.html
[platform-tools]: https://developer.android.com/studio/releases/platform-tools.html
[platform-tools-windows]: https://dl.google.com/android/repository/platform-tools-latest-windows.zip
[ffmpeg]: https://en.wikipedia.org/wiki/FFmpeg
[LibSDL2]: https://en.wikipedia.org/wiki/Simple_DirectMedia_Layer



## System-specific steps

### Linux

Install the required packages from your package manager.

#### Debian/Ubuntu

```bash
# runtime dependencies
S
Seb Leo 已提交
91
sudo apt install ffmpeg libsdl2-2.0-0 adb
92 93

# client build dependencies
94
sudo apt install gcc git pkg-config meson ninja-build \
R
Romain Vimont 已提交
95
                 libavcodec-dev libavformat-dev libavutil-dev libsdl2-dev
96 97

# server build dependencies
98
sudo apt install openjdk-11-jdk
99 100
```

101 102 103 104 105 106 107 108 109
On old versions (like Ubuntu 16.04), `meson` is too old. In that case, install
it from `pip3`:

```bash
sudo apt install python3-pip
pip3 install meson
```


110 111 112 113 114 115 116 117 118 119
#### Fedora

```bash
# enable RPM fusion free
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm

# client build dependencies
sudo dnf install SDL2-devel ffms2-devel meson gcc make

# server build dependencies
T
taaem 已提交
120
sudo dnf install java-devel
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
```



### Windows

#### Cross-compile from Linux

This is the preferred method (and the way the release is built).

From _Debian_, install _mingw_:

```bash
sudo apt install mingw-w64 mingw-w64-tools
```

You also need the JDK to build the server:

```bash
140
sudo apt install openjdk-11-jdk
141 142 143 144 145
```

Then generate the releases:

```bash
146
./release.sh
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
```

It will generate win32 and win64 releases into `dist/`.


#### In MSYS2

From Windows, you need [MSYS2] to build the project. From an MSYS2 terminal,
install the required packages:

[MSYS2]: http://www.msys2.org/

```bash
# runtime dependencies
pacman -S mingw-w64-x86_64-SDL2 \
          mingw-w64-x86_64-ffmpeg

# client build dependencies
pacman -S mingw-w64-x86_64-make \
          mingw-w64-x86_64-gcc \
          mingw-w64-x86_64-pkg-config \
          mingw-w64-x86_64-meson
```

For a 32 bits version, replace `x86_64` by `i686`:

```bash
# runtime dependencies
pacman -S mingw-w64-i686-SDL2 \
          mingw-w64-i686-ffmpeg

# client build dependencies
pacman -S mingw-w64-i686-make \
          mingw-w64-i686-gcc \
          mingw-w64-i686-pkg-config \
          mingw-w64-i686-meson
```

Java (>= 7) is not available in MSYS2, so if you plan to build the server,
install it manually and make it available from the `PATH`:

```bash
export PATH="$JAVA_HOME/bin:$PATH"
```

### Mac OS

Install the packages with [Homebrew]:

[Homebrew]: https://brew.sh/

```bash
# runtime dependencies
brew install sdl2 ffmpeg

# client build dependencies
brew install pkg-config meson
```

Additionally, if you want to build the server, install Java 8 from Caskroom, and
A
Andrea Gelmini 已提交
207
make it available from the `PATH`:
208 209

```bash
N
NGAU Zeonfung 已提交
210
brew tap homebrew/cask-versions
211 212
brew install adoptopenjdk/openjdk/adoptopenjdk11
export JAVA_HOME="$(/usr/libexec/java_home --version 1.11)"
213 214 215 216 217 218 219 220 221 222
export PATH="$JAVA_HOME/bin:$PATH"
```

### Docker

See [pierlon/scrcpy-docker](https://github.com/pierlon/scrcpy-docker).


## Common steps

223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
**As a non-root user**, clone the project:

```bash
git clone https://github.com/Genymobile/scrcpy
cd scrcpy
```


### Build

You may want to build only the client: the server binary, which will be pushed
to the Android device, does not depend on your system and architecture. In that
case, use the [prebuilt server] (so you will not need Java or the Android SDK).

[prebuilt server]: #option-2-use-prebuilt-server


#### Option 1: Build everything from sources

Install the [Android SDK] (_Android Studio_), and set `ANDROID_SDK_ROOT` to its
directory. For example:
244 245 246 247

[Android SDK]: https://developer.android.com/studio/index.html

```bash
N
NGAU Zeonfung 已提交
248 249 250 251 252 253
# Linux
export ANDROID_SDK_ROOT=~/Android/Sdk
# Mac
export ANDROID_SDK_ROOT=~/Library/Android/sdk
# Windows
set ANDROID_SDK_ROOT=%LOCALAPPDATA%\Android\sdk
254 255 256 257 258 259
```

Then, build:

```bash
meson x --buildtype release --strip -Db_lto=true
260
ninja -Cx  # DO NOT RUN AS ROOT
261 262
```

263 264 265 266 267 268
_Note: `ninja` [must][ninja-user] be run as a non-root user (only `ninja
install` must be run as root)._

[ninja-user]: https://github.com/Genymobile/scrcpy/commit/4c49b27e9f6be02b8e63b508b60535426bd0291a


269
#### Option 2: Use prebuilt server
270

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
 - [`scrcpy-server-v1.17`][direct-scrcpy-server]  
   _(SHA-256: 11b5ad2d1bc9b9730fb7254a78efd71a8ff46b1938ff468e47a21b653a1b6725)_

[direct-scrcpy-server]: https://github.com/Genymobile/scrcpy/releases/download/v1.17/scrcpy-server-v1.17

Download the prebuilt server somewhere, and specify its path during the Meson
configuration:

```bash
meson x --buildtype release --strip -Db_lto=true \
    -Dprebuilt_server=/path/to/scrcpy-server
ninja -Cx  # DO NOT RUN AS ROOT
```

The server only works with a matching client version (this server works with the
`master` branch).


### Run without installing:
290 291 292 293 294 295 296 297 298 299 300

```bash
./run x [options]
```


### Install

After a successful build, you can install _scrcpy_ on the system:

```bash
301
sudo ninja -Cx install    # without sudo on Windows
302 303
```

R
Romain Vimont 已提交
304
This installs three files:
305 306

 - `/usr/local/bin/scrcpy`
307
 - `/usr/local/share/scrcpy/scrcpy-server`
R
Romain Vimont 已提交
308
 - `/usr/local/share/man/man1/scrcpy.1`
309 310

You can then [run](README.md#run) _scrcpy_.
R
Romain Vimont 已提交
311 312 313 314 315 316

### Uninstall

```bash
sudo ninja -Cx uninstall  # without sudo on Windows
```