forked from mod-audio/mod-plugin-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.common
97 lines (71 loc) · 3.13 KB
/
.common
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/bash
#######################################################################################################################
# exit if any command fails
set -e
#######################################################################################################################
# environment variables
WORKDIR=${WORKDIR:=~/mod-workdir}
#######################################################################################################################
# Colored print functions
function error {
echo -e "\e[0;31m"$@"\e[0m"
exit 1
}
function info {
echo -e "\e[0;32m"$@"\e[0m"
}
function warn {
echo -e "\e[0;33m"$@"\e[0m"
}
#######################################################################################################################
# check for old installation
if [ -d ${WORKDIR}/build ]; then
info "mod-plugin-builder has been updated to support multiple platforms"
info "Unfortunately this requires a complete rebuild of its packages"
error "Please delete ${WORKDIR} and re-run bootstrap.sh"
fi
if [ -z "${PLATFORM}" ]; then
error "Incorrect use of .common, PLATFORM not defined!"
fi
#######################################################################################################################
# check for readlink binary
if [ -f "/opt/local/bin/greadlink" ]; then
readlink="/opt/local/bin/greadlink"
else
readlink="readlink"
fi
#######################################################################################################################
# macOS support through homebrew
if [ -d "/opt/homebrew/opt/binutils/bin" ]; then
export CPPFLAGS="-I/opt/homebrew/opt/ncurses/include -I/opt/homebrew/opt/gettext/include"
export LDFLAGS="-L/opt/homebrew/opt/ncurses/lib -L/opt/homebrew/opt/gettext/lib"
export PATH="/opt/homebrew/opt/binutils/bin:${PATH}"
fi
#######################################################################################################################
# crosstool-ng variables
CT_NG_LINK=http://crosstool-ng.org/download/crosstool-ng/
if [ "${PLATFORM}" == "modduo" ] || [ "${PLATFORM}" == "modduox" ]; then
CT_NG_VERSION=crosstool-ng-1.22.0
else
CT_NG_VERSION=crosstool-ng-1.24.0
fi
CT_NG_FILE=${CT_NG_VERSION}.tar.bz2
#######################################################################################################################
# buildroot variables
BUILDROOT_LINK=http://buildroot.uclibc.org/downloads/
BUILDROOT_VERSION=buildroot-2016.02
BUILDROOT_FILE=${BUILDROOT_VERSION}.tar.bz2
SOURCE_DIR=$("${readlink}" -f $(dirname $0))
BR2_MAKE="make O=${WORKDIR}/${PLATFORM} BR2_EXTERNAL=${SOURCE_DIR}/plugins-dep"
BR2_TARGET=${WORKDIR}/${PLATFORM}/target
#######################################################################################################################
# setup directories
BUILD_DIR=${WORKDIR}/${PLATFORM}/build
DOWNLOAD_DIR=${WORKDIR}/download
PLUGINS_DIR=${WORKDIR}/${PLATFORM}/plugins
TOOLCHAIN_DIR=${WORKDIR}/${PLATFORM}/toolchain
mkdir -p ${BUILD_DIR}
mkdir -p ${DOWNLOAD_DIR}
mkdir -p ${PLUGINS_DIR}
mkdir -p ${TOOLCHAIN_DIR}
#######################################################################################################################