X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gbsbuild.sh;h=4872ca48ad8b4b00775d17c040a1929f5976862e;hb=48ab23987ac3462296da2a3d4ae06bda6e9c2bd7;hp=487733bba9347a704b261e0c38a48c692ccc3227;hpb=2ebd9a3c8d6f9503f4026edea6c9720118fa46b2;p=platform%2Fupstream%2Fiotivity.git diff --git a/gbsbuild.sh b/gbsbuild.sh index 487733b..4872ca4 100755 --- a/gbsbuild.sh +++ b/gbsbuild.sh @@ -1,6 +1,6 @@ -#!/bin/sh +#!/bin/bash -e -spec=`ls tools/tizen/*.spec` +spec=`ls tools/tizen/iotivity.spec` version=`rpm --query --queryformat '%{version}\n' --specfile $spec` name=`echo $name|cut -d" " -f 1` @@ -32,7 +32,6 @@ rm -rf $sourcedir/tmp/extlibs/tinycbor/tinycbor/.git cp -R ./extlibs/cjson $sourcedir/tmp/extlibs cp -R ./extlibs/mbedtls $sourcedir/tmp/extlibs cp -R ./extlibs/gtest $sourcedir/tmp/extlibs -cp -R ./extlibs/tinydtls $sourcedir/tmp/extlibs cp -LR ./extlibs/sqlite3 $sourcedir/tmp/extlibs cp -R ./extlibs/timer $sourcedir/tmp/extlibs cp -R ./extlibs/rapidxml $sourcedir/tmp/extlibs @@ -40,7 +39,7 @@ cp -R ./extlibs/libcoap $sourcedir/tmp/extlibs cp -R ./resource $sourcedir/tmp cp -R ./service $sourcedir/tmp cp ./extra_options.scons $sourcedir/tmp -cp ./tools/tizen/*.spec ./tmp/packaging +cp ./tools/tizen/iotivity.spec ./tmp/packaging cp ./tools/tizen/*.manifest ./tmp/packaging cp ./SConstruct ./tmp cp ./LICENSE.md ./tmp @@ -55,7 +54,36 @@ cp -R $sourcedir/iotivity.pc.in $sourcedir/tmp cd $sourcedir/tmp -rm -rf ./extlibs/tinycbor/tinycbor/.git* +secured=1 +gbscommand="gbs build -A armv7l " + +for ARGUMENT_VALUE in $* +do + echo $ARGUMENT_VALUE + if [[ "$ARGUMENT_VALUE" = *"="* ]]; then + optionname=$(echo $ARGUMENT_VALUE | cut -f1 -d=) + optionvalue=$(echo $ARGUMENT_VALUE | cut -f2 -d=) + echo -- "# $optionname $optionvalue" + gbscommand=${gbscommand}" --define '$optionname $optionvalue'" + + if [ "SECURED" = "$optionname" ]; then + secured=$optionvalue + fi + else + echo "'$ARGUMENT_VALUE' does not contain '='"; + fi +done + +gbscommand="${gbscommand} -B ~/GBS-ROOT-OIC --include-all --repository ./" + +if [ $secured -eq 1 ];then + echo `pwd` + # Prepare mbedTLS dependency + $SHELL ./extlibs/mbedtls/prep.sh +fi + +# Prepare TinyCBOR dependency +$SHELL ./extlibs/tinycbor/prep.sh # Initialize Git repositoryㅣ if [ ! -d .git ]; then @@ -66,21 +94,7 @@ if [ ! -d .git ]; then git commit -m "Initial commit" fi -withtcp=0 -withcloud=0 -withproxy=0 -if [ "WITH_TCP" = "$1" ] || [ "WITH_TCP" = "$2" ] || [ "WITH_TCP" = "$3" ];then - withtcp=1 -fi -if [ "WITH_CLOUD" = "$1" ] || [ "WITH_CLOUD" = "$2" ] || [ "WITH_CLOUD" = "$3" ];then - withcloud=1 -fi -if [ "WITH_PROXY" = "$1" ] || [ "WITH_PROXY" = "$2" ] || [ "WITH_PROXY" = "$3" ];then - withproxy=1 -fi - echo "Calling core gbs build command" -gbscommand="gbs build -A armv7l --define 'WITH_TCP $withtcp' --define 'WITH_CLOUD $withcloud' --define 'WITH_PROXY $withproxy' -B ~/GBS-ROOT-OIC --include-all --repository ./" echo $gbscommand if eval $gbscommand; then echo "Build is successful"