-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpreinstall.sh
More file actions
24 lines (20 loc) · 819 Bytes
/
preinstall.sh
File metadata and controls
24 lines (20 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
DIR="./import"
IMPATK="/opt/atfeed-cppsdk"
rm -rf ./import
if [ ! -d "$DIR" ]
then
mkdir $DIR
fi
cp -r $IMPATK $DIR
cd $DIR
rm -rf libjson
git clone https://github.com/aryeharmon/libjson.git
if [ "$(uname)" = "Darwin" ]; then
sed -ie 's@#define JSON_LIBRARY@//#define JSON_LIBRARY@g' ./libjson/JSONOptions.h
elif [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]; then
sed -i 's@#define JSON_LIBRARY@//#define JSON_LIBRARY@g' ./libjson/JSONOptions.h
elif [ "$(expr substr $(uname -s) 1 10)" = "MINGW32_NT" ]; then
sed -i 's/#warning, Release build of libjson, but NDEBUG is not on//g' ./libjson/_internal/Source/JSONDefs.h
sed -i 's/#error, Release build of libjson, but NDEBUG is not on//g' ./libjson/_internal/Source/JSONDefs.h
sed -i 's@#define JSON_LIBRARY@//#define JSON_LIBRARY@g' ./libjson/JSONOptions.h
fi