Resolve secure tcp build issue for Tizen
[platform/upstream/iotivity.git] / resource / csdk / stack / samples / tizen / build / gbsbuild.sh
1 #!/bin/sh
2
3 spec=`ls ./resource/csdk/stack/samples/tizen/build/packaging/*.spec`
4 version=`rpm --query --queryformat '%{version}\n' --specfile $spec`
5
6 name=`echo $name|cut -d" " -f 1`
7 version=`echo $version|cut -d" " -f 1`
8
9 name=oicri
10
11 echo $1
12 export TARGET_TRANSPORT=$1
13
14 echo $2
15 export SECURED=$2
16
17 echo $3
18 export BUILD_SAMPLE=$3
19
20 echo $4
21 export RELEASE=$4
22
23 echo $5
24 export LOGGING=$5
25
26 echo $6
27 export ROUTING=$6
28
29 echo $7
30 export WITH_TCP=$7
31
32 echo $8
33 export WITH_PROXY=$8
34
35 echo $TARGET_TRANSPORT
36 echo $BUILD_SAMPLE
37
38 rm -rf $name-$version
39
40 builddir=`pwd`
41 sourcedir=`pwd`
42
43 echo `pwd`
44
45 rm -rf ./tmp
46 mkdir ./tmp
47 mkdir ./tmp/extlibs/
48 mkdir ./tmp/packaging
49 cp -LR ./extlibs/tinycbor $sourcedir/tmp/extlibs
50 rm -rf $sourcedir/tmp/extlibs/tinycbor/tinycbor/.git
51 cp -Rf ./extlibs/mbedtls $sourcedir/tmp/extlibs
52 rm -rf $sourcedir/tmp/extlibs/mbedtls/mbedtls/.git
53 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
54 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
55 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
56 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
57 cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs
58 cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs
59 cp -R ./resource/csdk/stack/samples/tizen/build/packaging/*.spec $sourcedir/tmp/packaging
60 cp -R ./resource $sourcedir/tmp/
61 cp -R ./build_common/external_libs.scons $sourcedir/tmp/
62 mkdir -p $sourcedir/tmp/build_common/
63 cp -a ./build_common/*.scons $sourcedir/tmp/build_common/
64
65 # copy dependency RPMs and conf files for tizen build
66 cp ./tools/tizen/*.rpm $sourcedir/tmp
67 cp ./tools/tizen/*.rpm $sourcedir/tmp/resource/csdk/stack/samples/tizen/SimpleClientServer
68 cp ./tools/tizen/.gbs.conf ./tmp
69 cp ./tools/tizen/.gbs.conf ./tmp/resource/csdk/stack/samples/tizen/SimpleClientServer
70
71 cd $sourcedir
72 cd ./resource/csdk/stack/samples/tizen/build/
73
74 cp -R ./* $sourcedir/tmp/
75 rm -f $sourcedir/tmp/SConscript
76 cp SConstruct $sourcedir/tmp/
77 cp scons/SConscript $sourcedir/tmp/scons/
78
79 mkdir -p $sourcedir/tmp/iotivityconfig
80 cd $sourcedir/build_common/
81 cp -R ./iotivityconfig/* $sourcedir/tmp/iotivityconfig/
82 cp -R ./SConscript $sourcedir/tmp/
83
84 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp/
85
86 cd $sourcedir/tmp
87
88 echo `pwd`
89
90 whoami
91 # Initialize Git repository
92 if [ ! -d .git ]; then
93    git init ./
94    git config user.email "you@example.com"
95    git config user.name "Your Name"
96    git add ./
97    git commit -m "Initial commit"
98 fi
99
100 echo "Calling core gbs build command"
101 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-RI-OIC --include-all --repository ./ --define 'TARGET_TRANSPORT $1' --define 'SECURED $2' --define 'RELEASE $4' --define 'LOGGING $5' --define 'ROUTING $6' --define 'WITH_TCP $7' --define 'WITH_PROXY $8'"
102 echo $gbscommand
103 if eval $gbscommand; then
104    echo "Core build is successful"
105 else
106    echo "Core build failed. Try 'find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
107    cd $sourcedir
108    rm -rf $sourcedir/tmp
109    exit 1
110 fi
111
112 if echo $BUILD_SAMPLE|grep -qi '^ON$'; then
113    cd resource/csdk/stack/samples/tizen/SimpleClientServer
114    echo `pwd`
115    # Initialize Git repository
116    if [ ! -d .git ]; then
117       git init ./
118       git config user.email "you@example.com"
119       git config user.name "Your Name"
120       git add ./
121       git commit -m "Initial commit"
122    fi
123    echo "Calling sample gbs build command"
124    gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-RI-OIC --include-all --repository ./ --define 'TARGET_TRANSPORT $1' --define 'SECURED $2' --define 'RELEASE $4' --define 'LOGGING $5' --define 'ROUTING $6' --define 'WITH_TCP $7' --define 'WITH_PROXY $8'"
125    echo $gbscommand
126    if eval $gbscommand; then
127       echo "Sample build is successful"
128    else
129       echo "Sample build is failed. Try 'find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
130       exit 1
131    fi
132 else
133         echo "Sample build is not enabled"
134 fi
135
136 cd $sourcedir
137 rm -rf $sourcedir/tmp
138
139 exit 0