Update Snapshot(2018-12-12)
[platform/upstream/iotivity.git] / gbsbuild.sh
1 #!/bin/bash -e
2
3 spec=`ls tools/tizen/iotivity.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/timer $sourcedir/tmp/extlibs
37 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
38 cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs
39 cp -R ./resource $sourcedir/tmp
40 cp -R ./service $sourcedir/tmp
41 cp ./extra_options.scons $sourcedir/tmp
42 cp ./tools/tizen/iotivity.spec ./tmp/packaging
43 cp ./tools/tizen/*.manifest ./tmp/packaging
44 cp ./SConstruct ./tmp
45 cp ./LICENSE.md ./tmp
46
47 # copy dependency RPMs and conf files for tizen build
48 cp ./tools/tizen/*.rpm ./tmp
49 cp ./tools/tizen/.gbs.conf ./tmp
50 cp ./tools/tizen/*.rpm $sourcedir/tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
51 cp ./tools/tizen/.gbs.conf ./tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
52
53 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp
54
55 cd $sourcedir/tmp
56
57 secured=1
58 gbscommand="gbs build -A armv7l "
59
60 for ARGUMENT_VALUE in $*
61 do
62    echo $ARGUMENT_VALUE
63    if [[ "$ARGUMENT_VALUE" = *"="* ]]; then
64       optionname=$(echo $ARGUMENT_VALUE | cut -f1 -d=)
65       optionvalue=$(echo $ARGUMENT_VALUE | cut -f2 -d=)
66       echo -- "# $optionname $optionvalue"
67       gbscommand=${gbscommand}" --define '$optionname $optionvalue'"
68
69       if [ "SECURED" = "$optionname" ]; then
70          secured=$optionvalue
71       fi
72    else
73       echo "'$ARGUMENT_VALUE' does not contain '='";
74    fi
75 done
76
77 gbscommand="${gbscommand} -B ~/GBS-ROOT-OIC --include-all --repository ./"
78
79 if [ $secured -eq 1 ];then
80   echo `pwd`
81   # Prepare mbedTLS dependency
82   $SHELL ./extlibs/mbedtls/prep.sh
83 fi
84
85 # Prepare TinyCBOR dependency
86 $SHELL ./extlibs/tinycbor/prep.sh
87
88 # Initialize Git repositoryㅣ
89 if [ ! -d .git ]; then
90    git init ./
91    git config user.email "you@example.com"
92    git config user.name "Your Name"
93    git add ./
94    git commit -m "Initial commit"
95 fi
96
97 echo "Calling core gbs build command"
98 echo $gbscommand
99 if eval $gbscommand; then
100     echo "Build is successful"
101 else
102     echo "Build failed!"
103     exit 1
104 fi
105
106
107 rm -rf tmp
108 cd $sourcedir
109 rm -rf $sourcedir/tmp
110
111 exit 0