mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 14:51:15 +00:00

gperf was only needed when building I think either freetype or fontconfig from source, but we choose the system libraries now.
16 lines
727 B
Text
16 lines
727 B
Text
# LICENSE BEGIN
|
|
# This file is part of the SixtyFPS Project -- https://sixtyfps.io
|
|
# Copyright (c) 2020 Olivier Goffart <olivier.goffart@sixtyfps.io>
|
|
# Copyright (c) 2020 Simon Hausmann <simon.hausmann@sixtyfps.io>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
# This file is also available under commercial licensing terms.
|
|
# Please contact info@sixtyfps.io for more information.
|
|
# LICENSE END
|
|
FROM rustembedded/cross:aarch64-unknown-linux-gnu-0.2.1
|
|
|
|
RUN dpkg --add-architecture arm64 && \
|
|
apt-get update && \
|
|
apt-get install --assume-yes libfontconfig1-dev:arm64 libxcb1-dev:arm64 libxcb-render0-dev:arm64 libxcb-shape0-dev:arm64 libxcb-xfixes0-dev:arm64 python3
|
|
|
|
ENV PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig
|