2018-08-17 15:49:13 +00:00
|
|
|
# Build scrcpy
|
|
|
|
|
|
|
|
Here are the instructions to build _scrcpy_ (client and server).
|
|
|
|
|
2023-03-04 07:56:35 +00:00
|
|
|
If you just want to build and install the latest release, follow the simplified
|
|
|
|
process described in [doc/linux.md](linux.md).
|
2021-03-29 07:16:42 +00:00
|
|
|
|
2020-04-07 08:38:13 +00:00
|
|
|
## Branches
|
|
|
|
|
2023-03-04 07:56:35 +00:00
|
|
|
There are two main branches:
|
|
|
|
- `master`: contains the latest release. It is the home page of the project on
|
|
|
|
GitHub.
|
|
|
|
- `dev`: the current development branch. Every commit present in `dev` will be
|
|
|
|
in the next release.
|
2020-04-07 08:38:13 +00:00
|
|
|
|
|
|
|
If you want to contribute code, please base your commits on the latest `dev`
|
|
|
|
branch.
|
|
|
|
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
You need [adb]. It is available in the [Android SDK platform
|
2019-06-05 07:52:25 +00:00
|
|
|
tools][platform-tools], or packaged in your distribution (`adb`).
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
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`
|
|
|
|
|
2023-03-04 07:56:35 +00:00
|
|
|
It is also available in scrcpy releases.
|
|
|
|
|
2018-08-17 15:49:13 +00:00
|
|
|
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
|
2021-09-10 10:57:35 +00:00
|
|
|
sudo apt install ffmpeg libsdl2-2.0-0 adb libusb-1.0-0
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
# client build dependencies
|
2021-05-09 08:49:46 +00:00
|
|
|
sudo apt install gcc git pkg-config meson ninja-build libsdl2-dev \
|
2021-09-10 10:57:35 +00:00
|
|
|
libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev \
|
2023-03-02 23:43:20 +00:00
|
|
|
libswresample-dev libusb-1.0-0-dev
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
# server build dependencies
|
2023-11-15 20:05:47 +00:00
|
|
|
sudo apt install openjdk-17-jdk
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
2018-11-10 23:08:41 +00:00
|
|
|
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
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2018-08-17 15:49:13 +00:00
|
|
|
#### 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
|
2023-06-30 13:49:46 +00:00
|
|
|
sudo dnf install SDL2-devel ffms2-devel libusb1-devel meson gcc make
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
# server build dependencies
|
2019-06-14 16:38:35 +00:00
|
|
|
sudo dnf install java-devel
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 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
|
2023-11-15 20:05:47 +00:00
|
|
|
sudo apt install openjdk-17-jdk
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Then generate the releases:
|
|
|
|
|
|
|
|
```bash
|
2021-02-26 23:20:18 +00:00
|
|
|
./release.sh
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
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 \
|
2022-02-07 07:52:17 +00:00
|
|
|
mingw-w64-x86_64-ffmpeg \
|
|
|
|
mingw-w64-x86_64-libusb
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
# 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 \
|
2022-02-07 07:52:17 +00:00
|
|
|
mingw-w64-i686-ffmpeg \
|
|
|
|
mingw-w64-i686-libusb
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
# 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
|
2022-02-17 20:34:48 +00:00
|
|
|
brew install sdl2 ffmpeg libusb
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
# client build dependencies
|
|
|
|
brew install pkg-config meson
|
|
|
|
```
|
|
|
|
|
2023-11-15 20:05:47 +00:00
|
|
|
Additionally, if you want to build the server, install Java 17 from Caskroom, and
|
2021-04-18 11:33:15 +00:00
|
|
|
make it available from the `PATH`:
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
```bash
|
2020-07-03 17:27:21 +00:00
|
|
|
brew tap homebrew/cask-versions
|
2023-11-15 20:05:47 +00:00
|
|
|
brew install adoptopenjdk/openjdk/adoptopenjdk17
|
|
|
|
export JAVA_HOME="$(/usr/libexec/java_home --version 1.17)"
|
2018-08-17 15:49:13 +00:00
|
|
|
export PATH="$JAVA_HOME/bin:$PATH"
|
|
|
|
```
|
|
|
|
|
|
|
|
### Docker
|
|
|
|
|
|
|
|
See [pierlon/scrcpy-docker](https://github.com/pierlon/scrcpy-docker).
|
|
|
|
|
|
|
|
|
|
|
|
## Common steps
|
|
|
|
|
2021-03-29 04:11:04 +00:00
|
|
|
**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:
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
[Android SDK]: https://developer.android.com/studio/index.html
|
|
|
|
|
|
|
|
```bash
|
2020-07-03 17:27:21 +00:00
|
|
|
# Linux
|
|
|
|
export ANDROID_SDK_ROOT=~/Android/Sdk
|
|
|
|
# Mac
|
|
|
|
export ANDROID_SDK_ROOT=~/Library/Android/sdk
|
|
|
|
# Windows
|
|
|
|
set ANDROID_SDK_ROOT=%LOCALAPPDATA%\Android\sdk
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
Then, build:
|
|
|
|
|
|
|
|
```bash
|
2022-12-21 12:29:27 +00:00
|
|
|
meson setup x --buildtype=release --strip -Db_lto=true
|
2021-03-29 04:11:04 +00:00
|
|
|
ninja -Cx # DO NOT RUN AS ROOT
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
2018-11-15 20:09:10 +00:00
|
|
|
_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
|
|
|
|
|
|
|
|
|
2021-03-29 04:11:04 +00:00
|
|
|
#### Option 2: Use prebuilt server
|
2018-08-17 15:49:13 +00:00
|
|
|
|
2023-12-02 11:39:05 +00:00
|
|
|
- [`scrcpy-server-v2.3.1`][direct-scrcpy-server]
|
|
|
|
<sub>SHA-256: `f6814822fc308a7a532f253485c9038183c6296a6c5df470a9e383b4f8e7605b`</sub>
|
2021-03-29 04:11:04 +00:00
|
|
|
|
2023-12-02 11:39:05 +00:00
|
|
|
[direct-scrcpy-server]: https://github.com/Genymobile/scrcpy/releases/download/v2.3.1/scrcpy-server-v2.3.1
|
2021-03-29 04:11:04 +00:00
|
|
|
|
|
|
|
Download the prebuilt server somewhere, and specify its path during the Meson
|
|
|
|
configuration:
|
|
|
|
|
|
|
|
```bash
|
2022-12-21 12:29:27 +00:00
|
|
|
meson setup x --buildtype=release --strip -Db_lto=true \
|
2021-03-29 04:11:04 +00:00
|
|
|
-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:
|
2018-08-17 15:49:13 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
./run x [options]
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### Install
|
|
|
|
|
|
|
|
After a successful build, you can install _scrcpy_ on the system:
|
|
|
|
|
|
|
|
```bash
|
2019-10-31 20:05:04 +00:00
|
|
|
sudo ninja -Cx install # without sudo on Windows
|
2018-08-17 15:49:13 +00:00
|
|
|
```
|
|
|
|
|
2022-04-28 17:49:34 +00:00
|
|
|
This installs several files:
|
|
|
|
|
|
|
|
- `/usr/local/bin/scrcpy` (main app)
|
|
|
|
- `/usr/local/share/scrcpy/scrcpy-server` (server to push to the device)
|
|
|
|
- `/usr/local/share/man/man1/scrcpy.1` (manpage)
|
|
|
|
- `/usr/local/share/icons/hicolor/256x256/apps/icon.png` (app icon)
|
|
|
|
- `/usr/local/share/zsh/site-functions/_scrcpy` (zsh completion)
|
|
|
|
- `/usr/local/share/bash-completion/completions/scrcpy` (bash completion)
|
2018-08-17 15:49:13 +00:00
|
|
|
|
2023-03-04 07:56:35 +00:00
|
|
|
You can then run `scrcpy`.
|
|
|
|
|
2021-04-01 07:47:15 +00:00
|
|
|
|
|
|
|
### Uninstall
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo ninja -Cx uninstall # without sudo on Windows
|
|
|
|
```
|