Common adapter for DTLS/TLS
[platform/upstream/iotivity.git] / service / easy-setup / sampleapp / enrollee / tizen-sdb / EnrolleeSample / build / tizen / gbsbuild.sh
1 #!/bin/sh
2
3 cur_dir="./service/easy-setup"
4 spec=`ls ./service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample/packaging/*.spec`
5 version=`rpm --query --queryformat '%{version}\n' --specfile $spec`
6
7 name=`echo $name|cut -d" " -f 1`
8 version=`echo $version|cut -d" " -f 1`
9
10 name=iotivity
11
12 rm -rf $name-$version
13
14 builddir=`pwd`
15 sourcedir=`pwd`
16
17 echo `pwd`
18
19 # Clean tmp directory.
20 rm -rf ./tmp
21
22 # Create directory structure for GBS Build
23 mkdir ./tmp
24 mkdir ./tmp/con/
25 mkdir ./tmp/extlibs/
26 mkdir ./tmp/packaging
27 mkdir ./tmp/logger
28 cp -R ./build_common $sourcedir/tmp
29 cp -R ./examples $sourcedir/tmp
30
31 # tinycbor is available as soft-link, so copying with 'dereference' option.
32 cp -LR ./extlibs/tinycbor $sourcedir/tmp/extlibs
33 rm -rf $sourcedir/tmp/extlibs/tinycbor/tinycbor/.git
34
35 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
36 cp -R ./extlibs/mbedtls $sourcedir/tmp/extlibs
37 cp -R ./extlibs/gtest $sourcedir/tmp/extlibs
38 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
39 cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs
40 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
41 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
42 cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs
43 cp -R ./resource $sourcedir/tmp
44 cp -R ./service $sourcedir/tmp
45 cp ./extra_options.scons $sourcedir/tmp
46 cp ./tools/tizen/*.spec ./tmp/packaging
47 cp ./tools/tizen/*.manifest ./tmp/packaging
48 cp ./SConstruct ./tmp
49 cp ./LICENSE.md ./tmp
50
51 # copy dependency RPMs and conf files for tizen build
52 cp ./tools/tizen/*.rpm ./tmp
53 cp ./tools/tizen/.gbs.conf ./tmp
54 cp ./tools/tizen/*.rpm $sourcedir/tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
55 cp ./tools/tizen/.gbs.conf ./tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
56
57 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp
58
59 cd $sourcedir/tmp
60
61 echo `pwd`
62 if [ -d ./extlibs/mbedtls/mbedtls ];then
63     cd ./extlibs/mbedtls/mbedtls
64     git reset --hard ad249f509fd62a3bbea7ccd1fef605dbd482a7bd ; git apply --whitespace=fix ../ocf.patch
65     cd -
66     rm -rf ./extlibs/mbedtls/mbedtls/.git*
67 fi
68 rm -rf ./extlibs/tinycbor/tinycbor/.git*
69
70
71 # Build IoTivity
72 # Initialize Git repository
73 if [ ! -d .git ]; then
74    git init ./
75    git config user.email "you@example.com"
76    git config user.name "Your Name"
77    git add ./
78    git commit -m "Initial commit"
79 fi
80
81 buildoption="--define 'TARGET_TRANSPORT '$1 --define 'SECURED '$2 --define 'ROUTING '$3 --define 'RELEASE '$4 --define 'LOGGING '$5 --define 'ES_TARGET_ENROLLEE '$6 --define 'WITH_TCP '$7 --define 'WITH_CLOUD '$8" 
82 echo "Calling core gbs build command"
83 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-OIC $buildoption --include-all --repository ./"
84 echo $gbscommand
85 if eval $gbscommand; then
86    echo "Core build is successful"
87 else
88    echo "Core build failed."
89    cd $sourcedir
90    rm -rf $sourcedir/tmp
91    exit 1
92 fi
93
94 # Build Enrollee Sample App
95 cd service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
96 echo `pwd`
97 # Initialize Git repository
98 if [ ! -d .git ]; then
99   git init ./
100   git config user.email "you@example.com"
101   git config user.name "Your Name"
102   git add ./
103   git commit -m "Initial commit"
104 fi
105 echo "Calling sample gbs build command"
106 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-OIC $buildoption --include-all --repository ./"
107 echo $gbscommand
108 if eval $gbscommand; then
109   echo "Sample build is successful"
110 else
111   echo "Sample build is failed."
112   exit 1
113 fi
114 rm -rf tmp
115 cd $sourcedir
116 rm -rf $sourcedir/tmp
117
118 exit 0