Merge branch 'master' into extended-easysetup
[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 $TARGET_TRANSPORT
30 echo $BUILD_SAMPLE
31
32 rm -rf $name-$version
33
34 builddir=`pwd`
35 sourcedir=`pwd`
36
37 echo `pwd`
38
39 rm -rf ./tmp
40 mkdir ./tmp
41 mkdir ./tmp/extlibs/
42 mkdir ./tmp/packaging
43 cp -LR ./extlibs/tinycbor $sourcedir/tmp/extlibs
44 rm -rf $sourcedir/tmp/extlibs/tinycbor/tinycbor/.git
45 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
46 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
47 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
48 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
49 cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs
50 cp -R ./resource/csdk/stack/samples/tizen/build/packaging/*.spec $sourcedir/tmp/packaging
51 cp -R ./resource $sourcedir/tmp/
52 cp -R ./build_common/external_libs.scons $sourcedir/tmp/
53 mkdir -p $sourcedir/tmp/build_common/
54 cp -a ./build_common/*.scons $sourcedir/tmp/build_common/
55
56 # copy dependency RPMs and conf files for tizen build
57 cp ./tools/tizen/*.rpm $sourcedir/tmp
58 cp ./tools/tizen/*.rpm $sourcedir/tmp/resource/csdk/stack/samples/tizen/SimpleClientServer
59 cp ./tools/tizen/.gbs.conf ./tmp
60 cp ./tools/tizen/.gbs.conf ./tmp/resource/csdk/stack/samples/tizen/SimpleClientServer
61
62 cd $sourcedir
63 cd ./resource/csdk/stack/samples/tizen/build/
64
65 cp -R ./* $sourcedir/tmp/
66 rm -f $sourcedir/tmp/SConscript
67 cp SConstruct $sourcedir/tmp/
68 cp scons/SConscript $sourcedir/tmp/scons/
69
70 mkdir -p $sourcedir/tmp/iotivityconfig
71 cd $sourcedir/build_common/
72 cp -R ./iotivityconfig/* $sourcedir/tmp/iotivityconfig/
73 cp -R ./SConscript $sourcedir/tmp/
74
75 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp/
76
77 cd $sourcedir/tmp
78
79 echo `pwd`
80
81 whoami
82 # Initialize Git repository
83 if [ ! -d .git ]; then
84    git init ./
85    git config user.email "you@example.com"
86    git config user.name "Your Name"
87    git add ./
88    git commit -m "Initial commit"
89 fi
90
91 echo "Calling core gbs build command"
92 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'"
93 echo $gbscommand
94 if eval $gbscommand; then
95    echo "Core build is successful"
96 else
97    echo "Core build failed. Try 'find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
98    cd $sourcedir
99    rm -rf $sourcedir/tmp
100    exit 1
101 fi
102
103 if echo $BUILD_SAMPLE|grep -qi '^ON$'; then
104    cd resource/csdk/stack/samples/tizen/SimpleClientServer
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-RI-OIC --include-all --repository ./ --define 'TARGET_TRANSPORT $1' --define 'SECURED $2' --define 'RELEASE $4' --define 'LOGGING $5' --define 'ROUTING $6'"
116    echo $gbscommand
117    if eval $gbscommand; then
118       echo "Sample build is successful"
119    else
120       echo "Sample build is failed. Try 'find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
121       exit 1
122    fi
123 else
124         echo "Sample build is not enabled"
125 fi
126
127 cd $sourcedir
128 rm -rf $sourcedir/tmp
129
130 exit 0