[Build] Cleanup build and packaging files (#513)
[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 ivi
105 Summary:   Tizen .NET assemblies for IVI profile
106 Group:     Development/Libraries
107 Requires:  %{name} = %{version}-%{release}
108 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
109 AutoReqProv: no
110
111 %description ivi
112 Tizen .NET assemblies for IVI profile
113
114 %package wearable
115 Summary:   Tizen .NET assemblies for Wearable profile
116 Group:     Development/Libraries
117 Requires:  %{name} = %{version}-%{release}
118 Requires:  csapi-tizenfx-dummy = %{version}-%{release}
119 AutoReqProv: no
120
121 %description wearable
122 Tizen .NET assemblies for Wearable profile
123
124 %prep
125 %setup -q
126 cp %{SOURCE1} .
127
128 %build
129 %{?asan:export ASAN_OPTIONS=use_sigaltstack=false:allow_user_segv_handler=true:handle_sigfpe=false:`cat /ASAN_OPTIONS`}
130
131 %define _tizenfx_bin_path Artifacts
132
133 GetFileList() {
134   PROFILE=$1
135   cat pkg/PlatformFileList.txt | grep -E "#$PROFILE[[:space:]]|#$PROFILE$" | cut -d# -f1 | sed "s#^#%{DOTNET_ASSEMBLY_PATH}/#"
136 }
137
138 GetFileList common > common.filelist
139 GetFileList mobile > mobile.filelist
140 GetFileList mobile-emul > mobile-emul.filelist
141 GetFileList tv > tv.filelist
142 GetFileList ivi > ivi.filelist
143 GetFileList wearable > wearable.filelist
144
145 rm -fr %{_tizenfx_bin_path}
146 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
147 ./build.sh --full
148 ./build.sh --dummy
149 ./build.sh --pack %{TIZEN_NET_NUGET_VERSION}
150
151 %install
152 mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_PATH}
153 mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_DUMMY_PATH}
154 mkdir -p %{buildroot}%{DOTNET_ASSEMBLY_RES_PATH}
155 mkdir -p %{buildroot}%{DOTNET_NUGET_SOURCE}
156
157 # Install Runtime Assemblies
158 install -p -m 644 %{_tizenfx_bin_path}/bin/public/*.dll %{buildroot}%{DOTNET_ASSEMBLY_PATH}
159 install -p -m 644 %{_tizenfx_bin_path}/bin/internal/*.dll %{buildroot}%{DOTNET_ASSEMBLY_PATH}
160
161 # Install Debug Symbols
162 install -p -m 644 %{_tizenfx_bin_path}/bin/public/*.pdb %{buildroot}%{DOTNET_ASSEMBLY_PATH}
163 install -p -m 644 %{_tizenfx_bin_path}/bin/internal/*.pdb %{buildroot}%{DOTNET_ASSEMBLY_PATH}
164
165 # Install Resource files
166 [ -d %{_tizenfx_bin_path}/bin/public/res ] \
167   && install -p -m 644 %{_tizenfx_bin_path}/bin/public/res/* %{buildroot}%{DOTNET_ASSEMBLY_RES_PATH}
168 [ -d %{_tizenfx_bin_path}/bin/internal/res ] \
169   && install -p -m 644 %{_tizenfx_bin_path}/bin/internal/res/* %{buildroot}%{DOTNET_ASSEMBLY_RES_PATH}
170
171 # Install Dummy Assemblies
172 install -p -m 644 %{_tizenfx_bin_path}/bin/dummy/*.dll %{buildroot}%{DOTNET_ASSEMBLY_DUMMY_PATH}
173
174 # Install NuGet Packages
175 install -p -m 644 %{_tizenfx_bin_path}/*.nupkg %{buildroot}%{DOTNET_NUGET_SOURCE}
176
177 %post
178 /usr/bin/vconftool set -t int db/dotnet/tizen_api_version %{TIZEN_NET_API_VERSION} -f
179
180
181 %files
182 %license LICENSE
183
184 %files nuget
185 %{DOTNET_NUGET_SOURCE}/*.nupkg
186
187 %files dummy
188 %attr(644,root,root) %{DOTNET_ASSEMBLY_DUMMY_PATH}/*.dll
189
190 %files full
191 %manifest %{name}.manifest
192 %attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.dll
193 %attr(644,root,root) %{DOTNET_ASSEMBLY_RES_PATH}/*
194
195 %files debug
196 %attr(644,root,root) %{DOTNET_ASSEMBLY_PATH}/*.pdb
197
198 %files common -f common.filelist
199 %manifest %{name}.manifest
200
201 %files mobile -f mobile.filelist
202 %manifest %{name}.manifest
203
204 %files mobile-emul -f mobile-emul.filelist
205 %manifest %{name}.manifest
206
207 %files tv -f tv.filelist
208 %manifest %{name}.manifest
209
210 %files ivi -f ivi.filelist
211 %manifest %{name}.manifest
212
213 %files wearable -f wearable.filelist
214 %manifest %{name}.manifest