From 8d745899a580f0652dfd2c1b455ed9502e409c0f Mon Sep 17 00:00:00 2001 From: Alex Burdusel <1262636+AlexBurdu@users.noreply.github.com> Date: Mon, 15 Nov 2021 22:18:40 +0200 Subject: [PATCH] Update BUILD.md Fix wrong package to install for Ubuntu/Debian Without it I was getting: ``` Run-time dependency libusb-1.0 found: NO (tried pkgconfig and cmake) app/meson.build:88:8: ERROR: Dependency "libusb-1.0" not found, tried pkgconfig and cmake ``` --- BUILD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.md b/BUILD.md index 9eda3715..44a720b8 100644 --- a/BUILD.md +++ b/BUILD.md @@ -15,7 +15,7 @@ First, you need to install the required packages: sudo apt install ffmpeg libsdl2-2.0-0 adb wget \ gcc git pkg-config meson ninja-build libsdl2-dev \ libavcodec-dev libavdevice-dev libavformat-dev libavutil-dev \ - libusb-1.0-0 libusb-dev + libusb-1.0-0 libusb-1.0-0-dev ``` Then clone the repo and execute the installation script