-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
809 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# fixme: 13 | ||
FROM debian:trixie | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN cat /etc/apt/sources.list.d/debian.sources | grep -v "^#" | sed "s/^deb /deb [arch=amd64] /g" > /tmp/amd64.list && \ | ||
cat /tmp/amd64.list | sed "s/\[arch=amd64\]/[arch=arm64]/g" > /tmp/arm64.list && \ | ||
cat /tmp/amd64.list /tmp/arm64.list > /etc/apt/sources.list.d/debian.sources && \ | ||
dpkg --add-architecture arm64 | ||
RUN cat /etc/apt/sources.list.d/debian.sources | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu \ | ||
ca-certificates nano python3 python3-setuptools clang screen llvm lld wget curl \ | ||
flex bison \ | ||
libfreetype6-dev \ | ||
libglib2.0-dev \ | ||
libltdl-dev \ | ||
libxcb1-dev \ | ||
libx11-dev \ | ||
librsvg2-bin \ | ||
git gettext make automake autoconf pkg-config libtool gtk-doc-tools clang \ | ||
dpkg-dev \ | ||
libglib2.0-dev:arm64 \ | ||
libfreetype6-dev:arm64 \ | ||
libltdl-dev:arm64 \ | ||
libxcb1-dev:arm64 \ | ||
libx11-dev:arm64 \ | ||
build-essential libc-dev-arm64-cross less libc-devtools libidn2-0:arm64 \ | ||
libx11-dev libxinerama-dev libfreetype-dev libfontconfig-dev \ | ||
cmake \ | ||
libstdc++6-arm64-cross \ | ||
libstdc++-13-dev-arm64-cross \ | ||
libepoxy-dev:arm64 \ | ||
libsdl2-dev:arm64 \ | ||
ninja-build \ | ||
dpkg-dev fakeroot debhelper dh-make \ | ||
libxcursor-dev:arm64 \ | ||
libxi-dev:arm64 \ | ||
libxshmfence-dev:arm64 \ | ||
libxxf86vm-dev:arm64 \ | ||
libxrandr-dev:arm64 \ | ||
libxrender-dev:arm64 \ | ||
libxfixes-dev:arm64 \ | ||
libxcomposite-dev:arm64 \ | ||
libosmesa-dev:arm64 \ | ||
libdbus-1-dev:arm64 \ | ||
libsane-dev:arm64 \ | ||
libusb-1.0-0-dev:arm64 \ | ||
libv4l-dev:arm64 \ | ||
libpulse-dev:arm64 \ | ||
libgstreamer1.0-dev:arm64 \ | ||
libgstreamer-plugins-base1.0-dev:arm64 \ | ||
libgstreamer-plugins-bad1.0-dev:arm64 \ | ||
libudev-dev:arm64 \ | ||
libunwind-dev:arm64 \ | ||
libsdl2-dev:arm64 \ | ||
libfontconfig1-dev:arm64 \ | ||
libkrb5-dev:arm64 \ | ||
libvulkan-dev:arm64 \ | ||
libgl-dev:arm64 \ | ||
libgnutls28-dev:arm64 \ | ||
libcups2-dev:arm64 \ | ||
libxkbcommon-dev:arm64 \ | ||
libxkbregistry-dev:arm64 \ | ||
libwayland-dev:arm64 | ||
|
||
RUN cd /opt; wget https://github.com/bylaws/llvm-mingw/releases/download/20240929/llvm-mingw-20240929-ucrt-ubuntu-20.04-x86_64.tar.xz; tar -xJf llvm-mingw-20240929-ucrt-ubuntu-20.04-x86_64.tar.xz; rm *.tar.xz; mv llvm-mingw-20240929-ucrt-ubuntu-20.04-x86_64 bylaws-llvm-mingw-20240929-ucrt-ubuntu-20.04-x86_64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Package: hangover-libqemu | ||
Version: HOVERSION~trixie | ||
Architecture: arm64 | ||
Maintainer: André Zwing <[email protected]> | ||
Description: x86 Linux emulator library for Hangover |
Oops, something went wrong.