3 spec=`ls tools/tizen/*.spec`
4 version=`rpm --query --queryformat '%{version}\n' --specfile $spec`
6 name=`echo $name|cut -d" " -f 1`
7 version=`echo $version|cut -d" " -f 1`
18 # Clean tmp directory.
21 # Create directory structure for GBS Build
25 cp -R ./build_common $sourcedir/tmp
26 cp -R ./examples $sourcedir/tmp
28 # tinycbor is available as soft-link, so copying with 'dereference' option.
29 cp -LR ./extlibs/tinycbor $sourcedir/tmp/extlibs
30 rm -rf $sourcedir/tmp/extlibs/tinycbor/tinycbor/.git
32 cp -R ./extlibs/cjson $sourcedir/tmp/extlibs
33 cp -R ./extlibs/mbedtls $sourcedir/tmp/extlibs
34 cp -R ./extlibs/gtest $sourcedir/tmp/extlibs
35 cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs
36 cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs
37 cp -R ./extlibs/timer $sourcedir/tmp/extlibs
38 cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs
39 cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs
40 cp -R ./resource $sourcedir/tmp
41 cp -R ./service $sourcedir/tmp
42 cp ./extra_options.scons $sourcedir/tmp
43 cp ./tools/tizen/*.spec ./tmp/packaging
44 cp ./tools/tizen/*.manifest ./tmp/packaging
48 # copy dependency RPMs and conf files for tizen build
49 cp ./tools/tizen/*.rpm ./tmp
50 cp ./tools/tizen/.gbs.conf ./tmp
51 cp ./tools/tizen/*.rpm $sourcedir/tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
52 cp ./tools/tizen/.gbs.conf ./tmp/service/easy-setup/sampleapp/enrollee/tizen-sdb/EnrolleeSample
54 cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp
63 for ARGUMENT_VALUE in $*
66 if [ "WITH_TCP" = $ARGUMENT_VALUE ];then
70 if [ "WITH_CLOUD" = $ARGUMENT_VALUE ];then
74 if [ "WITH_PROXY" = $ARGUMENT_VALUE ];then
78 if [ "WITH_MQ" = $ARGUMENT_VALUE ];then
82 if [ "SECURED" = $ARGUMENT_VALUE ];then
87 if [ $secured -eq 1 ];then
89 # Prepare mbedTLS dependency
90 $SHELL ./extlibs/mbedtls/prep.sh
93 # Prepare TinyCBOR dependency
94 $SHELL ./extlibs/tinycbor/prep.sh
96 # Initialize Git repositoryㅣ
97 if [ ! -d .git ]; then
99 git config user.email "you@example.com"
100 git config user.name "Your Name"
102 git commit -m "Initial commit"
105 echo "Calling core gbs build command"
106 gbscommand="gbs build -A armv7l --define 'WITH_TCP $withtcp' --define 'WITH_CLOUD $withcloud' --define 'WITH_PROXY $withproxy' --define 'WITH_MQ $withmq' --define 'SECURED $secured' -B ~/GBS-ROOT-OIC --include-all --repository ./"
108 if eval $gbscommand; then
109 echo "Build is successful"
118 rm -rf $sourcedir/tmp