diff options
author | alone <yooduck.seo@samsung.com> | 2020-10-26 19:17:57 +0900 |
---|---|---|
committer | alone <yooduck.seo@samsung.com> | 2020-10-26 19:17:57 +0900 |
commit | 7f5de0d8730918c577073cca78cbe9af8774659d (patch) | |
tree | d2d749b60480d2934f12475d79cc6bfe0a6ee4d1 | |
download | homescreen-efl-accepted/tizen_5.5_unified_mobile_hotfix.tar.gz homescreen-efl-accepted/tizen_5.5_unified_mobile_hotfix.tar.bz2 homescreen-efl-accepted/tizen_5.5_unified_mobile_hotfix.zip |
[ABS] Embed default widgets on homescreen by reading external db from res/data foldersubmit/tizen_5.5_mobile_hotfix_mobile_tpk/20201026.185109accepted/tizen/5.5/unified/mobile/hotfix/20201027.061429accepted/tizen_5.5_unified_mobile_hotfix
Reference: submit/tizen_5.5_mobile_hotfix/20201026.185109
Commit id: bc143aec86023e0a47f42fb2f7dd8d4f55327c03
Requested by: None
SDK rootstrap version: 20201019_1
-rw-r--r-- | org.tizen.homescreen-efl_common-1.0.0-arm-debug.tpk | bin | 0 -> 708326 bytes | |||
-rw-r--r-- | org.tizen.homescreen-efl_common-1.0.0-arm.tpk | bin | 0 -> 593406 bytes | |||
-rw-r--r-- | org.tizen.homescreen-efl_common-1.0.0-x86-debug.tpk | bin | 0 -> 705802 bytes | |||
-rw-r--r-- | org.tizen.homescreen-efl_common-1.0.0-x86.tpk | bin | 0 -> 705802 bytes | |||
-rw-r--r-- | packaging/org.tizen.homescreen-efl_common.spec | 54 |
5 files changed, 54 insertions, 0 deletions
diff --git a/org.tizen.homescreen-efl_common-1.0.0-arm-debug.tpk b/org.tizen.homescreen-efl_common-1.0.0-arm-debug.tpk Binary files differnew file mode 100644 index 0000000..d08312e --- /dev/null +++ b/org.tizen.homescreen-efl_common-1.0.0-arm-debug.tpk diff --git a/org.tizen.homescreen-efl_common-1.0.0-arm.tpk b/org.tizen.homescreen-efl_common-1.0.0-arm.tpk Binary files differnew file mode 100644 index 0000000..47f0d4b --- /dev/null +++ b/org.tizen.homescreen-efl_common-1.0.0-arm.tpk diff --git a/org.tizen.homescreen-efl_common-1.0.0-x86-debug.tpk b/org.tizen.homescreen-efl_common-1.0.0-x86-debug.tpk Binary files differnew file mode 100644 index 0000000..417c64a --- /dev/null +++ b/org.tizen.homescreen-efl_common-1.0.0-x86-debug.tpk diff --git a/org.tizen.homescreen-efl_common-1.0.0-x86.tpk b/org.tizen.homescreen-efl_common-1.0.0-x86.tpk Binary files differnew file mode 100644 index 0000000..ee30be3 --- /dev/null +++ b/org.tizen.homescreen-efl_common-1.0.0-x86.tpk diff --git a/packaging/org.tizen.homescreen-efl_common.spec b/packaging/org.tizen.homescreen-efl_common.spec new file mode 100644 index 0000000..f272611 --- /dev/null +++ b/packaging/org.tizen.homescreen-efl_common.spec @@ -0,0 +1,54 @@ +Name: org.tizen.homescreen-efl_common +#VCS_FROM: profile/iot/apps/native/homescreen-efl#bc143aec86023e0a47f42fb2f7dd8d4f55327c03 +#RS_Ver: 20201019_1 +Summary: Home for the mobile devices +Version: 1.0.0 +Release: 1 +Group: Applications/Core Applications +License: Apache-2.0 +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.homescreen-efl_common +%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/iot/apps/native/homescreen-efl#bc143aec86023e0a47f42fb2f7dd8d4f55327c03 +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}/* + |