2 %define TIZEN_NET_API_VERSION @api_version@
3 %define TIZEN_NET_RPM_VERSION @rpm_version@
4 %define TIZEN_NET_NUGET_VERSION @nuget_version@
6 %define DOTNET_ASSEMBLY_PATH /usr/share/dotnet.tizen/framework
7 %define DOTNET_ASSEMBLY_DUMMY_PATH %{DOTNET_ASSEMBLY_PATH}/ref
8 %define DOTNET_ASSEMBLY_RES_PATH %{DOTNET_ASSEMBLY_PATH}/res
9 %define DOTNET_NUGET_SOURCE /nuget
12 Summary: Assemblies of Tizen .NET
13 Version: %{TIZEN_NET_RPM_VERSION}
15 Group: Development/Libraries
16 License: Apache-2.0 and MIT
17 URL: https://www.tizen.org
18 Source0: %{name}-%{version}.tar.gz
19 Source1: %{name}.manifest
25 BuildRequires: dotnet-build-tools
26 Requires(post): /usr/bin/vconftool
32 Summary: NuGet package for %{name}
33 Group: Development/Libraries
37 NuGet package for %{name}
40 Summary: not used package
41 Group: Development/Libraries
48 Summary: All Tizen .NET assemblies
49 Group: Development/Libraries
50 Requires: %{name} = %{version}-%{release}
54 All Tizen .NET assemblies
57 Summary: All .pdb files of Tizen .NET
58 Group: Development/Libraries
62 All .pdb files of Tizen .NET
65 Summary: Tizen .NET assemblies for Common profile
66 Group: Development/Libraries
67 Requires: %{name} = %{version}-%{release}
71 Tizen .NET assemblies for Common profile
74 Summary: Tizen .NET assemblies for Mobile profile
75 Group: Development/Libraries
76 Requires: %{name} = %{version}-%{release}
80 Tizen .NET assemblies for Mobile profile
83 Summary: Tizen .NET assemblies for Emulator of Mobile profile
84 Group: Development/Libraries
85 Requires: %{name} = %{version}-%{release}
88 %description mobile-emul
89 Tizen .NET assemblies for Emulator of Mobile profile
92 Summary: Tizen .NET assemblies for TV profile
93 Group: Development/Libraries
94 Requires: %{name} = %{version}-%{release}
98 Tizen .NET assemblies for TV profile
101 Summary: Tizen .NET assemblies for Wearable profile
102 Group: Development/Libraries
103 Requires: %{name} = %{version}-%{release}
106 %description wearable
107 Tizen .NET assemblies for Wearable profile
114 %{?asan:export ASAN_OPTIONS=use_sigaltstack=false:allow_user_segv_handler=true:handle_sigfpe=false:`cat /ASAN_OPTIONS`}
116 %define _tizenfx_bin_path Artifacts
118 rm -fr %{_tizenfx_bin_path}
119 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
121 %define build_cmd ./tools/scripts/retry.sh ./tools/scripts/timeout.sh -t 600 ./build.sh
124 %{build_cmd} --pack %{TIZEN_NET_NUGET_VERSION}
128 cat packaging/PlatformFileList.txt | grep -E "#$PROFILE[[:space:]]|#$PROFILE$" | cut -d# -f1 | sed "s#^#%{DOTNET_ASSEMBLY_PATH}/#"
129 for f in $(cat packaging/PlatformFileList.txt | grep -v -E "#$PROFILE[[:space:]]|#$PROFILE$" | cut -d# -f1); do
130 if [ -f %{_tizenfx_bin_path}/bin/dummy/$f ]; then
131 echo "%{DOTNET_ASSEMBLY_PATH}/ref/$f"
136 GetFileList common > common.filelist
137 GetFileList mobile > mobile.filelist
138 GetFileList mobile-emul > mobile-emul.filelist
139 GetFileList tv > tv.filelist
140 GetFileList wearable > wearable.filelist
143 mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_PATH}
144 mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_DUMMY_PATH}
145 mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_RES_PATH}
146 mkdir -p %{buildroot}%{DOTNET_NUGET_SOURCE}
148 # Install Runtime Assemblies
149 install -p -m 644 %{_tizenfx_bin_path}/bin/public/*.dll %{buildroot}%{DOTNET_ASSEMBLY_PATH}
150 install -p -m 644 %{_tizenfx_bin_path}/bin/internal/*.dll %{buildroot}%{DOTNET_ASSEMBLY_PATH}
152 # Install Debug Symbols
153 install -p -m 644 %{_tizenfx_bin_path}/bin/public/*.pdb %{buildroot}%{DOTNET_ASSEMBLY_PATH}
154 install -p -m 644 %{_tizenfx_bin_path}/bin/internal/*.pdb %{buildroot}%{DOTNET_ASSEMBLY_PATH}
156 # Install Resource files
157 [ -d %{_tizenfx_bin_path}/bin/public/res ] \
158 && install -p -m 644 %{_tizenfx_bin_path}/bin/public/res/* %{buildroot}%{DOTNET_ASSEMBLY_RES_PATH}
159 [ -d %{_tizenfx_bin_path}/bin/internal/res ] \
160 && install -p -m 644 %{_tizenfx_bin_path}/bin/internal/res/* %{buildroot}%{DOTNET_ASSEMBLY_RES_PATH}
162 # Install Dummy Assemblies
163 install -p -m 644 %{_tizenfx_bin_path}/bin/dummy/*.dll %{buildroot}%{DOTNET_ASSEMBLY_DUMMY_PATH}
165 # Install NuGet Packages
166 install -p -m 644 %{_tizenfx_bin_path}/*.nupkg %{buildroot}%{DOTNET_NUGET_SOURCE}
167 install -p -m 644 packaging/*.nupkg %{buildroot}%{DOTNET_NUGET_SOURCE}
170 /usr/bin/vconftool set -t int db/dotnet/tizen_api_version %{TIZEN_NET_API_VERSION} -f
171 /usr/bin/vconftool set -t string db/dotnet/tizen_api_path %{DOTNET_ASSEMBLY_PATH} -f
177 %{DOTNET_NUGET_SOURCE}/*.nupkg
182 %manifest %{name}.manifest
183 %attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.dll
184 %attr(644,root,root) %{DOTNET_ASSEMBLY_DUMMY_PATH}/*.dll
185 %attr(644,root,root) %{DOTNET_ASSEMBLY_RES_PATH}/*
188 %attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.pdb
190 %files common -f common.filelist
191 %manifest %{name}.manifest
193 %files mobile -f mobile.filelist
194 %manifest %{name}.manifest
196 %files mobile-emul -f mobile-emul.filelist
197 %manifest %{name}.manifest
199 %files tv -f tv.filelist
200 %manifest %{name}.manifest
202 %files wearable -f wearable.filelist
203 %manifest %{name}.manifest