From 5ba78b195171d5c2fa1fa7692022b756f59f4624 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Mon, 6 Mar 2023 20:48:50 +0100 Subject: [PATCH] Just install everything with apt-get --- .drone.yml | 3 ++- notes.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 notes.txt diff --git a/.drone.yml b/.drone.yml index 3c1d2e6..bbf97e9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -29,7 +29,8 @@ steps: - name: Build the Linux version image: ubuntu commands: - - ./linux/deb_get_prereqs.sh + - apt update -y + - apt install -y build-essential libasound2 cmake fftw-dev pkg-config libx11-dev x11-xserver-utils libxrandr-dev libxinerama-dev libxcursor-dev libfreetype6-dev libfftw3-dev - cmake -B build -S /src -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev - cmake --build build diff --git a/notes.txt b/notes.txt new file mode 100644 index 0000000..6f55e46 --- /dev/null +++ b/notes.txt @@ -0,0 +1 @@ +apt install build-essential libasound2 cmake fftw-dev pkg-config libx11-dev x11-xserver-utils libxrandr-dev libxinerama-dev libxcursor-dev libfreetype6-dev libfftw3-dev