8 lines
411 B
TOML
8 lines
411 B
TOML
[build]
|
|
default-target = "aarch64-unknown-linux-gnu" # use this target if none is explicitly provided
|
|
pre-build = [ # additional commands to run prior to building the package
|
|
"dpkg --add-architecture $CROSS_DEB_ARCH",
|
|
"apt update",
|
|
"apt --assume-yes install apt-utils:$CROSS_DEB_ARCH",
|
|
"apt --assume-yes install libsdl3-dev:$CROSS_DEB_ARCH"
|
|
] |