1af1de6c21c1af34603fe15b5f5bf0909406ecfa
[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 $9
36 export WITH_MQ=$9
37
38 echo $TARGET_TRANSPORT
39 echo $BUILD_SAMPLE
40 echo $WITH_MQ
41
42 rm -rf $name-$version
43
44 builddir=`pwd`
45 sourcedir=`pwd`
46
47 echo `pwd`
48
49 rm -rf ./tmp
50 mkdir ./tmp
51 mkdir ./tmp/extlibs/
52 mkdir ./tmp/packaging
53 cp -LR ./extlibs/tinycbor $sourcedir/tmp/extlibs
54 cp -Rf ./extlibs/mbedtls $sourcedir/tmp/extlibs
55 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
56 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
57 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
58 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
59 cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs
60 cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs
61 cp -R ./resource/csdk/stack/samples/tizen/build/packaging/*.spec $sourcedir/tmp/packaging
62 cp -R ./resource $sourcedir/tmp/
63 cp -R ./build_common/external_libs.scons $sourcedir/tmp/
64 mkdir -p $sourcedir/tmp/build_common/
65 cp -a ./build_common/*.scons $sourcedir/tmp/build_common/
66
67 # copy dependency RPMs and conf files for tizen build
68 cp ./tools/tizen/*.rpm $sourcedir/tmp
69 cp ./tools/tizen/*.rpm $sourcedir/tmp/resource/csdk/stack/samples/tizen/SimpleClientServer
70 cp ./tools/tizen/.gbs.conf ./tmp
71 cp ./tools/tizen/.gbs.conf ./tmp/resource/csdk/stack/samples/tizen/SimpleClientServer
72
73 cd $sourcedir
74 cd ./resource/csdk/stack/samples/tizen/build/
75
76 cp -R ./* $sourcedir/tmp/
77 rm -f $sourcedir/tmp/SConscript
78 cp SConstruct $sourcedir/tmp/
79 cp scons/SConscript $sourcedir/tmp/scons/
80
81 mkdir -p $sourcedir/tmp/iotivityconfig
82 cd $sourcedir/build_common/
83 cp -R ./iotivityconfig/* $sourcedir/tmp/iotivityconfig/
84 cp -R ./SConscript $sourcedir/tmp/
85
86 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp/
87
88 cd $sourcedir/tmp
89
90 echo `pwd`
91 # Prepare mbedTLS dependency
92 $SHELL ./extlibs/mbedtls/prep.sh
93
94 # Prepare TinyCBOR dependency
95 $SHELL ./extlibs/tinycbor/prep.sh
96
97 whoami
98 # Initialize Git repository
99 if [ ! -d .git ]; then
100    git init ./
101    git config user.email "you@example.com"
102    git config user.name "Your Name"
103    git add ./
104    git commit -m "Initial commit"
105 fi
106
107 echo "Calling core gbs build command"
108 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' --define 'WITH_MQ $9'"
109 echo $gbscommand
110 if eval $gbscommand; then
111    echo "Core build is successful"
112 else
113    echo "Core build failed. Try 'find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
114    cd $sourcedir
115    rm -rf $sourcedir/tmp
116    exit 1
117 fi
118
119 if echo $BUILD_SAMPLE|grep -qi '^ON$'; then
120    cd resource/csdk/stack/samples/tizen/SimpleClientServer
121    echo `pwd`
122    # Initialize Git repository
123    if [ ! -d .git ]; then
124       git init ./
125       git config user.email "you@example.com"
126       git config user.name "Your Name"
127       git add ./
128       git commit -m "Initial commit"
129    fi
130    echo "Calling sample gbs build command"
131    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' --define 'WITH_MQ $9'"
132    echo $gbscommand
133    if eval $gbscommand; then
134       echo "Sample build is successful"
135    else
136       echo "Sample build is failed. Try 'find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
137       exit 1
138    fi
139 else
140         echo "Sample build is not enabled"
141 fi
142
143 cd $sourcedir
144 rm -rf $sourcedir/tmp
145
146 exit 0