a31b94f22c7fa5a52daefc1a61cf1e3f05ec5f08
[platform/core/csapi/tizenfx.git] / build.sh
1 #!/bin/bash
2
3 SCRIPT_FILE=$(readlink -f $0)
4 SCRIPT_DIR=$(dirname $SCRIPT_FILE)
5
6 # Properties
7 OUTDIR=$SCRIPT_DIR/Artifacts
8 NUGET_CMD="mono $SCRIPT_DIR/tools/NuGet.exe"
9
10 usage() {
11   echo "Usage: $0 [options] [args]"
12   echo "    Options:"
13   echo "        -h, --help            Show this usages message"
14   echo "        -b, --build [module]  Build a module"
15   echo "        -f, --full            Build all modules in src/ directory. The module should be added in pkg/Tizen.NET.Private.sln"
16   echo "        -d, --dummy           Build dummy modules"
17   echo "        -p, --pack            Make nuget packages"
18   echo "        -c, --clean           Clean all artifacts"
19 }
20
21 cmd_clean() {
22   rm -fr $OUTDIR
23   LIST=$(find $SCRIPT_DIR -type d -a -name bin -o -name obj)
24   for d in $LIST; do
25     rm -fr $d
26   done
27 }
28
29 cmd_build() {
30   if [ -z "$1" ]; then
31     echo "No module specified."
32     exit 1
33   fi
34   dotnet build $SCRIPT_DIR/src/$1 --configuration=Release --output=$OUTDIR/bin
35 }
36
37 cmd_full_build() {
38   dotnet build $SCRIPT_DIR/pkg/Tizen.NET.Private.sln --configuration=Release --output=$OUTDIR/bin
39 }
40
41 cmd_pack() {
42   VERSION_FILE=$OUTDIR/Version.txt
43   if [ -f $VERSION_FILE ]; then
44     NUGET_VERSION_PREFIX=$(cat $VERSION_FILE | grep Prefix | cut -d: -f2 | sed 's/\r$//')
45     NUGET_VERSION_SUFFIX=$(cat $VERSION_FILE | grep Suffix | cut -d: -f2 | sed 's/\r$//')
46           NUGET_VERSION_OPT="-Version $NUGET_VERSION_PREFIX-$NUGET_VERSION_SUFFIX"
47   fi
48   $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.Private.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $OUTDIR -OutputDirectory $OUTDIR
49   $NUGET_CMD pack $SCRIPT_DIR/pkg/Tizen.NET.nuspec -Symbols -NoPackageAnalysis $NUGET_VERSION_OPT -BasePath $OUTDIR -OutputDirectory $OUTDIR
50 }
51
52 cmd_dummy_build() {
53   dotnet build $SCRIPT_DIR/pkg/Tizen.NET.Dummy.csproj --configuration=Release
54 }
55
56 OPTS=`getopt -o hcbfpd --long help,clean,build,full,pack,dummy -n 'build' -- "$@"`
57 if [ $? != 0 ] ; then echo "Failed parsing options." >&2 ; usage; exit 1 ; fi
58 eval set -- "$OPTS"
59
60 FLAG_HELP=false
61 FLAG_FULL=false
62 FLAG_BUILD=false
63 FLAG_CLEAN=false
64 FLAG_DUMMY=false
65 FLAG_PACK=false
66
67 while true; do
68   case "$1" in
69     -h|--help) FLAG_HELP=true; shift ;;
70     -b|--build) FLAG_BUILD=true; shift ;;
71     -f|--full) FLAG_FULL=true; shift ;;
72     -d|--dummy) FLAG_DUMMY=true; shift ;;
73     -p|--pack) FLAG_PACK=true; shift ;;
74     -c|--clean) FLAG_CLEAN=true; shift ;;
75     --) shift; break ;;
76     *) break ;;
77   esac
78 done
79
80 if $FLAG_HELP; then usage; exit 0; fi
81 if $FLAG_CLEAN; then cmd_clean; exit 0; fi
82 if $FLAG_FULL; then cmd_full_build; exit 0; fi
83 if $FLAG_BUILD; then cmd_build $@; exit 0; fi
84 if $FLAG_PACK; then cmd_pack $@; exit 0; fi
85 if $FLAG_DUMMY; then cmd_dummy_build; exit 0; fi
86
87 usage;