blob: ae507586ae98c0ab4c6441f70d3bff96d98098bf (
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.w-home
#VCS_FROM: profile/wearable/apps/native/w3-home#c90da095169f9723cbb381606120c4dca85b2b39
#RS_Ver: 20190419_2
Summary: Home for the wearable devices
Version: 1.0.0
Release: 1
Group: Applications/System
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.w-home
%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/w3-home#c90da095169f9723cbb381606120c4dca85b2b39
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}/*
|