This repository has no description
446 B
12 lines
1FROM ghcr.io/cross-rs/arm-unknown-linux-gnueabihf:main
2
3RUN dpkg --add-architecture armhf && \
4 rm -f /etc/apt/preferences.d/all-packages && \
5 apt-get update && \
6 apt-get --assume-yes install libasound2-dev:armhf && \
7 rm -rf /var/lib/apt/lists/*
8
9ENV PKG_CONFIG_PATH=/usr/lib/arm-linux-gnueabihf/pkgconfig \
10 PKG_CONFIG_LIBDIR=/usr/lib/arm-linux-gnueabihf/pkgconfig \
11 PKG_CONFIG_SYSROOT_DIR=/ \
12 PKG_CONFIG_ALLOW_CROSS=1