Imported Upstream version 0.9.2
[platform/upstream/iotivity.git] / gbsbuild.sh
1 #!/bin/sh
2
3 spec=`ls tools/tizen/*.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=iotivity
10
11 rm -rf $name-$version
12
13 builddir=`pwd`
14 sourcedir=`pwd`
15
16 echo `pwd`
17
18 mkdir ./tmp
19 mkdir ./tmp/extlibs/
20 mkdir ./tmp/packaging
21 cp -R ./build_common $sourcedir/tmp
22 cp -R ./examples $sourcedir/tmp
23 cp -R ./extlibs/tinycbor $sourcedir/tmp/extlibs
24 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
25 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
26 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
27 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
28 cp -R ./resource $sourcedir/tmp
29 cp -R ./service $sourcedir/tmp
30 cp ./extra_options.scons $sourcedir/tmp
31 cp ./tools/tizen/*.spec ./tmp/packaging
32 cp ./SConstruct ./tmp
33 cp ./tools/tizen/*.rpm ./tmp
34 cp ./tools/tizen/.gbs.conf ./tmp
35 cd $sourcedir/tmp
36
37 echo `pwd`
38 rm -rf ./extlibs/tinycbor/tinycbor/.git*
39
40 # Initialize Git repository
41 if [ ! -d .git ]; then
42    git init ./
43    git config user.email "you@example.com"
44    git config user.name "Your Name"
45    git add ./
46    git commit -m "Initial commit"
47 fi
48
49 echo "Calling core gbs build command"
50 gbscommand="gbs build -A armv7l -B ~/GBS-ROOT --include-all --repository ./"
51 echo $gbscommand
52 if eval $gbscommand; then
53    echo "Build is successful"
54 else
55    echo "Build failed!"
56 fi
57
58 cd $sourcedir
59 rm -rf $sourcedir/tmp