Imported Upstream version 1.0.0
[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 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp/
65
66 cd $sourcedir/tmp
67
68 echo `pwd`
69
70 whoami
71 # Initialize Git repository
72 if [ ! -d .git ]; then
73    git init ./
74    git config user.email "you@example.com"
75    git config user.name "Your Name"
76    git add ./
77    git commit -m "Initial commit"
78 fi
79
80 echo "Calling core gbs build command"
81 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 ./"
82 echo $gbscommand
83 if eval $gbscommand; then
84    echo "Core build is successful"
85 else
86    echo "Core build failed. Try 'sudo find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
87    cd $sourcedir
88    rm -rf $sourcedir/tmp
89    exit
90 fi
91
92 if echo $BUILD_SAMPLE|grep -qi '^ON$'; then
93    cd resource/csdk/stack/samples/tizen/SimpleClientServer
94    echo `pwd`
95    # Initialize Git repository
96    if [ ! -d .git ]; then
97       git init ./
98       git config user.email "you@example.com"
99       git config user.name "Your Name"
100       git add ./
101       git commit -m "Initial commit"
102    fi
103    echo "Calling sample gbs build command"
104    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 ./"
105    echo $gbscommand
106    if eval $gbscommand; then
107       echo "Sample build is successful"
108    else
109       echo "Sample build is failed. Try 'sudo find . -type f -exec dos2unix {} \;' in the 'connectivity/' folder"
110    fi
111 else
112         echo "Sample build is not enabled"
113 fi
114
115
116 cd $sourcedir
117 rm -rf $sourcedir/tmp
118