diff options
author | Amritanshu Pandia <a.pandia1@samsung.com> | 2019-03-29 13:33:42 +0900 |
---|---|---|
committer | Amritanshu Pandia <a.pandia1@samsung.com> | 2019-03-29 13:33:42 +0900 |
commit | 36850a594d695e0f897c52696f3bc7fbfda0d8db (patch) | |
tree | 4d38fd1646337e15c9f4c4b17ac6112f03198ed3 | |
download | w3-home-36850a594d695e0f897c52696f3bc7fbfda0d8db.tar.gz w3-home-36850a594d695e0f897c52696f3bc7fbfda0d8db.tar.bz2 w3-home-36850a594d695e0f897c52696f3bc7fbfda0d8db.zip |
[ABS] w3-home GBS to CLI project migration.submit/tizen_wearable_tpk/20190329.043109
This patch added suported files to
migrate w-home application from GBS to CLI
project.
Reference: submit/tizen/20190329.043109
Commit id: 5796c35c095818e391dd9a522f774a3c4bffc679
Requested by: a.pandia1@samsung.com
SDK rootstrap version: 20190328_1
-rw-r--r-- | org.tizen.w-home-1.0.0-arm-debug.tpk | bin | 0 -> 1691764 bytes | |||
-rw-r--r-- | org.tizen.w-home-1.0.0-arm.tpk | bin | 0 -> 1691764 bytes | |||
-rw-r--r-- | org.tizen.w-home-1.0.0-x86-debug.tpk | bin | 0 -> 1656066 bytes | |||
-rw-r--r-- | org.tizen.w-home-1.0.0-x86.tpk | bin | 0 -> 1656066 bytes | |||
-rw-r--r-- | packaging/org.tizen.w-home.spec | 54 |
5 files changed, 54 insertions, 0 deletions
diff --git a/org.tizen.w-home-1.0.0-arm-debug.tpk b/org.tizen.w-home-1.0.0-arm-debug.tpk Binary files differnew file mode 100644 index 0000000..27d4511 --- /dev/null +++ b/org.tizen.w-home-1.0.0-arm-debug.tpk diff --git a/org.tizen.w-home-1.0.0-arm.tpk b/org.tizen.w-home-1.0.0-arm.tpk Binary files differnew file mode 100644 index 0000000..d7cc221 --- /dev/null +++ b/org.tizen.w-home-1.0.0-arm.tpk diff --git a/org.tizen.w-home-1.0.0-x86-debug.tpk b/org.tizen.w-home-1.0.0-x86-debug.tpk Binary files differnew file mode 100644 index 0000000..12b0aa1 --- /dev/null +++ b/org.tizen.w-home-1.0.0-x86-debug.tpk diff --git a/org.tizen.w-home-1.0.0-x86.tpk b/org.tizen.w-home-1.0.0-x86.tpk Binary files differnew file mode 100644 index 0000000..1253907 --- /dev/null +++ b/org.tizen.w-home-1.0.0-x86.tpk diff --git a/packaging/org.tizen.w-home.spec b/packaging/org.tizen.w-home.spec new file mode 100644 index 0000000..3b1dc60 --- /dev/null +++ b/packaging/org.tizen.w-home.spec @@ -0,0 +1,54 @@ +Name: org.tizen.w-home +#VCS_FROM: profile/wearable/apps/native/w3-home#5796c35c095818e391dd9a522f774a3c4bffc679 +#RS_Ver: 20190328_1 +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#5796c35c095818e391dd9a522f774a3c4bffc679 +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}/* + |