Merge remote-tracking branch 'origin/routing-manager'
[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 mkdir ./tmp
40 mkdir ./tmp/extlibs/
41 mkdir ./tmp/packaging
42 cp -R ./extlibs/tinycbor $sourcedir/tmp/extlibs
43 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
44 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
45 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
46 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
47 cp -R ./resource/csdk/stack/samples/tizen/build/packaging/*.spec $sourcedir/tmp/packaging
48 cp -R ./resource $sourcedir/tmp/
49 cp -R ./build_common/external_libs.scons $sourcedir/tmp/
50
51 cd $sourcedir
52 cd ./resource/csdk/stack/samples/tizen/build/
53
54 cp -R ./* $sourcedir/tmp/
55 rm -f $sourcedir/tmp/SConscript
56 cp SConstruct $sourcedir/tmp/
57 cp scons/SConscript $sourcedir/tmp/scons/
58
59 mkdir -p $sourcedir/tmp/iotivityconfig
60 cd $sourcedir/build_common/
61 cp -R ./iotivityconfig/* $sourcedir/tmp/iotivityconfig/
62 cp -R ./SConscript $sourcedir/tmp/
63
64 cd $sourcedir/tmp
65
66 echo `pwd`
67
68 whoami
69 # Initialize Git repository
70 if [ ! -d .git ]; then
71    git init ./
72    git config user.email "you@example.com"
73    git config user.name "Your Name"
74    git add ./
75    git commit -m "Initial commit"
76 fi
77
78 echo "Calling core gbs build command"
79 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-RI --include-all --define 'TARGET_TRANSPORT $1' --define 'SECURED $2' --define 'RELEASE $4' --define 'LOGGING $5' --define 'ROUTING $6' --repository ./"
80 echo $gbscommand
81 if eval $gbscommand; then
82    echo "Core build is successful"
83 else
84    echo "Core build failed. Try 'sudo find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
85    cd $sourcedir
86    rm -rf $sourcedir/tmp
87    exit
88 fi
89
90 if echo $BUILD_SAMPLE|grep -qi '^ON$'; then
91    cd resource/csdk/stack/samples/tizen/SimpleClientServer
92    echo `pwd`
93    # Initialize Git repository
94    if [ ! -d .git ]; then
95       git init ./
96       git config user.email "you@example.com"
97       git config user.name "Your Name"
98       git add ./
99       git commit -m "Initial commit"
100    fi
101    echo "Calling sample gbs build command"
102    gbscommand="gbs build -A armv7l -B ~/GBS-ROOT-RI --include-all --define 'TARGET_TRANSPORT $1' --define 'SECURED $2' --define 'RELEASE $4' --define 'LOGGING $5' --define 'ROUTING $6' --repository ./"
103    echo $gbscommand
104    if eval $gbscommand; then
105       echo "Sample build is successful"
106    else
107       echo "Sample build is failed. Try 'sudo find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
108    fi
109 else
110         echo "Sample build is not enabled"
111 fi
112
113
114 cd $sourcedir
115 rm -rf $sourcedir/tmp
116