Fix build scripts for real
This commit is contained in:
parent
51e585b2f8
commit
24c47d1e3f
|
@ -76,7 +76,7 @@ echo =====================
|
||||||
# aarch64
|
# aarch64
|
||||||
if [[ "$ARCH_LABEL" == "" ]]; then
|
if [[ "$ARCH_LABEL" == "" ]]; then
|
||||||
ARCH_LABEL="64bit"
|
ARCH_LABEL="64bit"
|
||||||
case "$archs" in
|
case "$(uname -m)" in
|
||||||
i?86) ARCH_LABEL="32bit" ;;
|
i?86) ARCH_LABEL="32bit" ;;
|
||||||
aarch64) ARCH_LABEL="aarch64" ;;
|
aarch64) ARCH_LABEL="aarch64" ;;
|
||||||
esac
|
esac
|
||||||
|
@ -111,8 +111,11 @@ fpm -C ./root -s dir -t rpm \
|
||||||
--url="https://www.sketchymaze.com"
|
--url="https://www.sketchymaze.com"
|
||||||
|
|
||||||
# Debian Package
|
# Debian Package
|
||||||
|
# NOTE: ideally wanted to depend on libsdl2 etc. but it doesn't work
|
||||||
|
# on Debian Buster to depend on either `libsdl2` or `libsdl2-2.0` nor
|
||||||
|
# on either `libsdl2-ttf` or `libsdl2-ttf-2.0` so just remove deps
|
||||||
|
# and let the user figure it out.
|
||||||
fpm -C ./root -s dir -t deb \
|
fpm -C ./root -s dir -t deb \
|
||||||
-d libsdl2-2.0 -d libsdl2-ttf-2.0 -d libsdl2-mixer-2.0 \
|
|
||||||
-a $DEB_ARCH \
|
-a $DEB_ARCH \
|
||||||
-n sketchy-maze -v ${VERSION} \
|
-n sketchy-maze -v ${VERSION} \
|
||||||
--license="Copyright" \
|
--license="Copyright" \
|
||||||
|
|
|
@ -25,7 +25,7 @@ STAGE_PATH="$(pwd)/dist/stage/${VERSION}"
|
||||||
if [[ "$ARCH_LABEL" == "" ]]; then
|
if [[ "$ARCH_LABEL" == "" ]]; then
|
||||||
# Reasonable default
|
# Reasonable default
|
||||||
ARCH_LABEL="64bit"
|
ARCH_LABEL="64bit"
|
||||||
case "$archs" in
|
case "$(uname -m)" in
|
||||||
i?86) ARCH_LABEL="32bit" ;;
|
i?86) ARCH_LABEL="32bit" ;;
|
||||||
aarch64) ARCH_LABEL="aarch64" ;;
|
aarch64) ARCH_LABEL="aarch64" ;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue
Block a user