83 lines
1.8 KiB
Bash
83 lines
1.8 KiB
Bash
#!/bin/bash
|
|
|
|
#
|
|
# JoeyBuild
|
|
# Copyright (C) 2018-2023 Scott Duensing <scott@kangaroopunch.com>
|
|
#
|
|
# This software is provided 'as-is', without any express or implied
|
|
# warranty. In no event will the authors be held liable for any damages
|
|
# arising from the use of this software.
|
|
#
|
|
# Permission is granted to anyone to use this software for any purpose,
|
|
# including commercial applications, and to alter it and redistribute it
|
|
# freely, subject to the following restrictions:
|
|
#
|
|
# 1. The origin of this software must not be misrepresented; you must not
|
|
# claim that you wrote the original software. If you use this software
|
|
# in a product, an acknowledgment in the product documentation would be
|
|
# appreciated but is not required.
|
|
# 2. Altered source versions must be plainly marked as such, and must not be
|
|
# misrepresented as being the original software.
|
|
# 3. This notice may not be removed or altered from any source distribution.
|
|
#
|
|
|
|
|
|
M_SDL2_TAG=97a5e744497ff7cc93edc5119d67cad3ee86dd57
|
|
M_TRIPLE="x86_64-linux-gnu"
|
|
|
|
|
|
function architectures() {
|
|
echo "i386 x86_64"
|
|
}
|
|
|
|
|
|
function buildApplication() {
|
|
local ARCH=$1
|
|
local PASS=$2
|
|
|
|
true
|
|
}
|
|
|
|
|
|
function buildJoeyLib() {
|
|
local ARCH=$1
|
|
local PASS=$2
|
|
|
|
|
|
export CFLAGS="-Wall -static-libgcc -D_REENTRANT_ -I${G_INSTALLED}/include -c"
|
|
export LDFLAGS="-lm -ldl -lpthread"
|
|
|
|
if [[ "${ARCH}" == "i386" ]]; then
|
|
export CFLAGS="-m32 ${CFLAGS}"
|
|
fi
|
|
|
|
if [[ "${PASS}" == "debug" ]]; then
|
|
export CFLAGS="-DJOEY_DEBUG ${CFLAGS}"
|
|
fi
|
|
|
|
source helpers/SDL2.helper
|
|
buildJoeyLibSDL2
|
|
|
|
export LDFLAGS=
|
|
export CFLAGS=
|
|
}
|
|
|
|
|
|
function enabled() {
|
|
echo 0
|
|
}
|
|
|
|
|
|
function install() {
|
|
local ARCH=$1
|
|
local PASS=$2
|
|
|
|
if [[ "${ARCH}" == "i386" ]]; then
|
|
export CFLAGS="-m32"
|
|
fi
|
|
|
|
source helpers/SDL2.helper
|
|
buildSDL2 ${M_SDL2_TAG} ${M_TRIPLE}
|
|
|
|
export CFLAGS=
|
|
}
|