IOT-1072 Unfork libcoap: add build flag
[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 ../ocf.patch
65     cd -
66     rm -rf ./extlibs/mbedtls/mbedtls/.git*
67
68 else
69     echo ""
70     echo "*********************************** Error: ****************************************"
71     echo "* Please download mbedtls using the following command:                            *"
72     echo "*     $ git clone https://github.com/ARMmbed/mbedtls.git extlibs/mbedtls/mbedtls  *"
73     echo "***********************************************************************************"
74     echo ""
75     exit
76 fi
77 rm -rf ./extlibs/tinycbor/tinycbor/.git*
78
79
80 # Build IoTivity
81 # Initialize Git repository
82 if [ ! -d .git ]; then
83    git init ./
84    git config user.email "you@example.com"
85    git config user.name "Your Name"
86    git add ./
87    git commit -m "Initial commit"
88 fi
89
90 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" 
91 echo "Calling core gbs build command"
92 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-OIC $buildoption --include-all --repository ./"
93 echo $gbscommand
94 if eval $gbscommand; then
95    echo "Core build is successful"
96 else
97    echo "Core build failed."
98    cd $sourcedir
99    rm -rf $sourcedir/tmp
100    exit 1
101 fi
102
103 # Build Enrollee Sample App
104 cd service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
105 echo `pwd`
106 # Initialize Git repository
107 if [ ! -d .git ]; then
108   git init ./
109   git config user.email "you@example.com"
110   git config user.name "Your Name"
111   git add ./
112   git commit -m "Initial commit"
113 fi
114 echo "Calling sample gbs build command"
115 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-OIC $buildoption --include-all --repository ./"
116 echo $gbscommand
117 if eval $gbscommand; then
118   echo "Sample build is successful"
119 else
120   echo "Sample build is failed."
121   exit 1
122 fi
123 rm -rf tmp
124 cd $sourcedir
125 rm -rf $sourcedir/tmp
126
127 exit 0