[IOT-2334][IOT-2335] Fixed presence sample app crash issue
[platform/upstream/iotivity.git] / gbsbuild.sh
1 #!/bin/bash -e
2
3 spec=`ls tools/tizen/*.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=iotivity
10
11 rm -rf $name-$version
12
13 builddir=`pwd`
14 sourcedir=`pwd`
15
16 echo `pwd`
17
18 # Clean tmp directory.
19 rm -rf ./tmp
20
21 # Create directory structure for GBS Build
22 mkdir ./tmp
23 mkdir ./tmp/extlibs/
24 mkdir ./tmp/packaging
25 cp -R ./build_common $sourcedir/tmp
26 cp -R ./examples $sourcedir/tmp
27
28 # tinycbor is available as soft-link, so copying with 'dereference' option.
29 cp -LR ./extlibs/tinycbor $sourcedir/tmp/extlibs
30 rm -rf $sourcedir/tmp/extlibs/tinycbor/tinycbor/.git
31
32 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
33 cp -R ./extlibs/mbedtls $sourcedir/tmp/extlibs
34 cp -R ./extlibs/gtest $sourcedir/tmp/extlibs
35 cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs
36 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
37 cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs
38 cp -R ./resource $sourcedir/tmp
39 cp -R ./service $sourcedir/tmp
40 cp ./extra_options.scons $sourcedir/tmp
41 cp ./tools/tizen/*.spec ./tmp/packaging
42 cp ./tools/tizen/*.manifest ./tmp/packaging
43 cp ./SConstruct ./tmp
44 cp ./LICENSE.md ./tmp
45
46 # copy dependency RPMs and conf files for tizen build
47 cp ./tools/tizen/*.rpm ./tmp
48 cp ./tools/tizen/.gbs.conf ./tmp
49 cp ./tools/tizen/*.rpm $sourcedir/tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
50 cp ./tools/tizen/.gbs.conf ./tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
51
52 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp
53
54 cd $sourcedir/tmp
55
56 secured=1
57 gbscommand="gbs build -A armv7l "
58 nproc=$(expr 1 + $(expr `nproc --ignore=1` / 2 ) )
59 gbscommand=$gbscommand" --define '_smp_mflags -j$nproc'"
60
61 for ARGUMENT_VALUE in $*
62 do
63    echo $ARGUMENT_VALUE
64    if [[ "$ARGUMENT_VALUE" = *"="* ]]; then
65       optionname=$(echo $ARGUMENT_VALUE | cut -f1 -d=)
66       optionvalue=$(echo $ARGUMENT_VALUE | cut -f2 -d=)
67       echo -- "# $optionname $optionvalue"
68       gbscommand=${gbscommand}" --define '$optionname $optionvalue'"
69
70       if [ "SECURED" = "$optionname" ]; then
71          secured=$optionvalue
72       fi
73    else
74       echo "'$ARGUMENT_VALUE' does not contain '='";
75    fi
76 done
77
78 gbscommand="${gbscommand} -B ~/GBS-ROOT-OIC --include-all --repository ./"
79
80 if [ $secured -eq 1 ];then
81   echo `pwd`
82   # Prepare mbedTLS dependency
83   $SHELL ./extlibs/mbedtls/prep.sh
84 fi
85
86 # Prepare TinyCBOR dependency
87 $SHELL ./extlibs/tinycbor/prep.sh
88
89 # Initialize Git repositoryㅣ
90 if [ ! -d .git ]; then
91    git init ./
92    git config user.email "you@example.com"
93    git config user.name "Your Name"
94    git add ./
95    git commit -m "Initial commit"
96 fi
97
98 echo "Calling core gbs build command"
99 echo $gbscommand
100 if eval $gbscommand; then
101     echo "Build is successful"
102 else
103     echo "Build failed!"
104     exit 1
105 fi
106
107
108 rm -rf tmp
109 cd $sourcedir
110 rm -rf $sourcedir/tmp
111
112 exit 0