summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWonYoung Choi <wy80.choi@samsung.com>2016-12-19 18:51:23 +0900
committerWonYoung Choi <wy80.choi@samsung.com>2016-12-19 20:58:11 +0900
commit402bc241257119eeb2a206917a7e698a78053ca6 (patch)
tree2840215cdd582c767f0e1797a21dff4effe52878
parent225c42ffc210e965a294db1be7b3a89bed6ffa3a (diff)
downloadiotcon-402bc241257119eeb2a206917a7e698a78053ca6.tar.gz
iotcon-402bc241257119eeb2a206917a7e698a78053ca6.tar.bz2
iotcon-402bc241257119eeb2a206917a7e698a78053ca6.zip
Change-Id: I47d0b08bb6ee7fc9ada1a35dbdcb7ead40ebffae Signed-off-by: WonYoung Choi <wy80.choi@samsung.com>
-rw-r--r--packaging/csapi-network-iotconnectivity.spec52
1 files changed, 10 insertions, 42 deletions
diff --git a/packaging/csapi-network-iotconnectivity.spec b/packaging/csapi-network-iotconnectivity.spec
index 6fe2382..ed2b636 100644
--- a/packaging/csapi-network-iotconnectivity.spec
+++ b/packaging/csapi-network-iotconnectivity.spec
@@ -1,11 +1,3 @@
-%{!?dotnet_assembly_path: %define dotnet_assembly_path /opt/usr/share/dotnet.tizen/framework}
-
-%if 0%{?tizen_build_devel_mode}
-%define BUILDCONF Debug
-%else
-%define BUILDCONF Release
-%endif
-
Name: csapi-network-iotconnectivity
Summary: Tizen IoT Connectivity API for C#
Version: 1.0.1
@@ -17,60 +9,36 @@ Source0: %{name}-%{version}.tar.gz
Source1: %{name}.manifest
AutoReqProv: no
-ExcludeArch: %{ix86} aarch64
-
-BuildRequires: mono-compiler
-BuildRequires: mono-devel
+ExcludeArch: aarch64 %ix86
BuildRequires: dotnet-build-tools
# C# API Requires
BuildRequires: csapi-tizen-nuget
+%define Assemblies Tizen.Network.IoTConnectivity
+
%description
-Tizen IoTConnectivity API for C#
+%{summary}
+
+%dotnet_import_sub_packages
%prep
%setup -q
cp %{SOURCE1} .
-%define Assemblies Tizen.Network.IoTConnectivity
-
%build
for ASM in %{Assemblies}; do
-# NuGet Restore
-find $ASM/*.project.json -exec nuget restore {} \;
-# Build
-find $ASM/*.csproj -exec xbuild {} /p:Configuration=%{BUILDCONF} \;
-# NuGet Pack
-nuget pack $ASM/$ASM.nuspec -Version %{version} -Properties Configuration=%{BUILDCONF}
+%dotnet_build $ASM
+%dotnet_pack $ASM/$ASM.nuspec %{version}
done
%install
-# Runtime Binary
-mkdir -p %{buildroot}%{dotnet_assembly_path}
for ASM in %{Assemblies}; do
-%if 0%{?_with_corefx}
- install -p -m 644 $ASM/bin/%{BUILDCONF}/$ASM.dll %{buildroot}%{dotnet_assembly_path}
-%else
- install -p -m 644 $ASM/bin/%{BUILDCONF}/Net45/$ASM.dll %{buildroot}%{dotnet_assembly_path}
-%endif
+%dotnet_install $ASM
done
-# NuGet
-mkdir -p %{buildroot}/nuget
-install -p -m 644 *.nupkg %{buildroot}/nuget
%files
%manifest %{name}.manifest
%license LICENSE
-%attr(644,root,root) %{dotnet_assembly_path}/*.dll
-
-%package nuget
-Summary: NuGet package for %{name}
-Group: Development/Libraries
-
-%description nuget
-NuGet package for %{name}
-
-%files nuget
-/nuget/*.nupkg
+%attr(644,root,root) %{dotnet_assembly_files} \ No newline at end of file