blob: f2594c03dfb0676298196c58020e7197590e1fe9 (
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
49
50
51
52
53
54
|
Name: org.tizen.alarm
#VCS_FROM: profile/wearable/apps/native/alarm#3cefad219fe531e932db84f726dd0a7a5161d715
#RS_Ver: 20200205_2
Summary: org.tizen.alarm
Version: 1.0.0
Release: 1
Group: N/A
License: Flora-1.1
Source0: %{name}-%{version}.tar.gz
ExclusiveArch: i586 x86 i486 i686 i386 armv7l arm
BuildRequires: pkgconfig(libtzplatform-config)
Requires(post): /usr/bin/tpk-backend
%define internal_name org.tizen.alarm
%define preload_tpk_path %{TZ_SYS_RO_APP}/.preload-tpk
%define build_mode %{nil}
%ifarch arm armv7l
%define target arm
%endif
%ifarch aarch64
%define target aarch64
%endif
%ifarch x86_64
%define target x86_64
%endif
%ifarch i386 i486 i586 i686
%define target x86
%endif
%description
profile/wearable/apps/native/alarm#3cefad219fe531e932db84f726dd0a7a5161d715
This is a container package which have preload TPK/WGT files
%prep
%setup -q
%build
%install
rm -rf %{buildroot}
mkdir -p %{buildroot}/%{preload_tpk_path}
install %{internal_name}-%{version}-%{target}%{build_mode}.tpk %{buildroot}/%{preload_tpk_path}/
%post
%files
%defattr(-,root,root,-)
%{preload_tpk_path}/*
|