29 lines
659 B
Bash
Executable file
29 lines
659 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# postproc-linux.sh 1.0.1
|
|
#
|
|
# Linux build script post-processor.
|
|
#
|
|
# This is called from build-win.sh after the app-bundle has been built.
|
|
# Use this e.g. to copy additional resources to the app-bundle.
|
|
# You can use all variables from the main script here.
|
|
#
|
|
# (c)2023 Harald Schneider - marketmix.com
|
|
|
|
if [ $APP_ARCH = "x64" ]; then
|
|
:
|
|
# Handle Intel releases here
|
|
# cp SOME_FILE "${APP_DST}/"
|
|
fi
|
|
|
|
if [ $APP_ARCH = "arm64" ]; then
|
|
:
|
|
# Handle ARM releases here
|
|
# cp SOME_FILE "${APP_DST}/"
|
|
fi
|
|
|
|
if [ $APP_ARCH = "armhf" ]; then
|
|
:
|
|
# Handle ARM hard_float releases here.
|
|
# cp SOME_FILE "${APP_DST}/"
|
|
fi
|