summaryrefslogtreecommitdiff
path: root/packaging/csapi-maps.spec
blob: e469b87ce101cd11c0c5cfb5b0cbb77620f08a63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Name:       csapi-maps
Summary:    Tizen Map Service API for C#
Version:    1.0.10
Release:    4
Group:      Development/Libraries
License:    Apache-2.0 and SAMSUNG
URL:        https://www.tizen.org
Source0:    %{name}-%{version}.tar.gz
Source1:    %{name}.manifest

AutoReqProv: no
ExcludeArch: aarch64

BuildRequires: dotnet-build-tools

# NuGet for Dependencies
BuildRequires: csapi-tizen-nuget
BuildRequires: elm-sharp-nuget

%define Assemblies Tizen.Maps

%description
%{summary}

%dotnet_import_sub_packages

%prep
%setup -q
cp %{SOURCE1} .

%build
for ASM in %{Assemblies}; do
%dotnet_build $ASM
%dotnet_pack $ASM/$ASM.nuspec %{version}
done

%install
mkdir -p %{buildroot}%{dotnet_assembly_path}/res
for ASM in %{Assemblies}; do
%dotnet_install $ASM
install -p -m 644 $ASM/res/*.png %{buildroot}%{dotnet_assembly_path}/res
done

%files
%manifest %{name}.manifest
%license LICENSE
%attr(644,root,root) %{dotnet_assembly_files}
%attr(644,root,root) %{dotnet_assembly_path}/res/*.png