[Build] Remove ivi profile
[platform/core/csapi/tizenfx.git] / packaging / csapi-tizenfx.spec.in
1
2 %define TIZEN_NET_API_VERSION @api_version@
3 %define TIZEN_NET_RPM_VERSION @rpm_version@
4 %define TIZEN_NET_NUGET_VERSION @nuget_version@
5
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
10
11 Name:       csapi-tizenfx
12 Summary:    Assemblies of Tizen .NET
13 Version:    %{TIZEN_NET_RPM_VERSION}
14 Release:    1
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
20
21 BuildArch:   noarch
22 ExcludeArch: aarch64
23 AutoReqProv: no
24
25 BuildRequires: dotnet-build-tools
26 Requires(post): /usr/bin/vconftool
27
28 %description
29 %{summary}
30
31 %package nuget
32 Summary:   NuGet package for %{name}
33 Group:     Development/Libraries
34 AutoReqProv: no
35
36 %description nuget
37 NuGet package for %{name}
38
39 %package dummy
40 Summary:   Dummy assemblies of Tizen .NET
41 Group:     Development/Libraries
42 AutoReqProv: no
43
44 %description dummy
45 Dummy assemblies of Tizen .NET
46
47 %package full
48 Summary:   All Tizen .NET assemblies
49 Group:     Development/Libraries
50 Requires:  %{name} = %{version}-%{release}
51 AutoReqProv: no
52
53 %description full
54 All Tizen .NET assemblies
55
56 %package debug
57 Summary:   All .pdb files of Tizen .NET
58 Group:     Development/Libraries
59 AutoReqProv: no
60
61 %description debug
62 All .pdb files of Tizen .NET
63
64 %package common
65 Summary:   Tizen .NET assemblies for Common profile
66 Group:     Development/Libraries
67 Requires:  %{name} = %{version}-%{release}
68 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
69 AutoReqProv: no
70
71 %description common
72 Tizen .NET assemblies for Common profile
73
74 %package mobile
75 Summary:   Tizen .NET assemblies for Mobile profile
76 Group:     Development/Libraries
77 Requires:  %{name} = %{version}-%{release}
78 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
79 AutoReqProv: no
80
81 %description mobile
82 Tizen .NET assemblies for Mobile profile
83
84 %package mobile-emul
85 Summary:   Tizen .NET assemblies for Emulator of Mobile profile
86 Group:     Development/Libraries
87 Requires:  %{name} = %{version}-%{release}
88 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
89 AutoReqProv: no
90
91 %description mobile-emul
92 Tizen .NET assemblies for Emulator of Mobile profile
93
94 %package tv
95 Summary:   Tizen .NET assemblies for TV profile
96 Group:     Development/Libraries
97 Requires:  %{name} = %{version}-%{release}
98 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
99 AutoReqProv: no
100
101 %description tv
102 Tizen .NET assemblies for TV profile
103
104 %package wearable
105 Summary:   Tizen .NET assemblies for Wearable profile
106 Group:     Development/Libraries
107 Requires:  %{name} = %{version}-%{release}
108 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
109 AutoReqProv: no
110
111 %description wearable
112 Tizen .NET assemblies for Wearable profile
113
114 %prep
115 %setup -q
116 cp %{SOURCE1} .
117
118 %build
119 %{?asan:export ASAN_OPTIONS=use_sigaltstack=false:allow_user_segv_handler=true:handle_sigfpe=false:`cat /ASAN_OPTIONS`}
120
121 %define _tizenfx_bin_path Artifacts
122
123 GetFileList() {
124   PROFILE=$1
125   cat PlatformFileList.txt | grep -E "#$PROFILE[[:space:]]|#$PROFILE$" | cut -d# -f1 | sed "s#^#%{DOTNET_ASSEMBLY_PATH}/#"
126 }
127
128 GetFileList common > common.filelist
129 GetFileList mobile > mobile.filelist
130 GetFileList mobile-emul > mobile-emul.filelist
131 GetFileList tv > tv.filelist
132 GetFileList wearable > wearable.filelist
133
134 rm -fr %{_tizenfx_bin_path}
135 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
136
137 %define build_cmd ./tools/scripts/retry.sh ./tools/scripts/timeout.sh -t 600 ./build.sh
138 %{build_cmd} --full
139 %{build_cmd} --dummy
140 %{build_cmd} --pack %{TIZEN_NET_NUGET_VERSION}
141
142 %install
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}
147
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}
151
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}
155
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}
161
162 # Install Dummy Assemblies
163 install -p -m 644 %{_tizenfx_bin_path}/bin/dummy/*.dll %{buildroot}%{DOTNET_ASSEMBLY_DUMMY_PATH}
164
165 # Install NuGet Packages
166 install -p -m 644 %{_tizenfx_bin_path}/*.nupkg %{buildroot}%{DOTNET_NUGET_SOURCE}
167
168 %post
169 /usr/bin/vconftool set -t int db/dotnet/tizen_api_version %{TIZEN_NET_API_VERSION} -f
170
171
172 %files
173 %license LICENSE
174
175 %files nuget
176 %{DOTNET_NUGET_SOURCE}/*.nupkg
177
178 %files dummy
179 %attr(644,root,root) %{DOTNET_ASSEMBLY_DUMMY_PATH}/*.dll
180
181 %files full
182 %manifest %{name}.manifest
183 %attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.dll
184 %attr(644,root,root) %{DOTNET_ASSEMBLY_RES_PATH}/*
185
186 %files debug
187 %attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.pdb
188
189 %files common -f common.filelist
190 %manifest %{name}.manifest
191
192 %files mobile -f mobile.filelist
193 %manifest %{name}.manifest
194
195 %files mobile-emul -f mobile-emul.filelist
196 %manifest %{name}.manifest
197
198 %files tv -f tv.filelist
199 %manifest %{name}.manifest
200
201 %files wearable -f wearable.filelist
202 %manifest %{name}.manifest