diff options
author | tizenrobot <tizenrobot@noreply.samsung.com> | 2018-11-01 18:36:35 +0900 |
---|---|---|
committer | tizenrobot <tizenrobot@noreply.samsung.com> | 2018-11-01 18:36:35 +0900 |
commit | f0609cd657301894fec064d5703cd3872173b82f (patch) | |
tree | 10e6dcea341aff75cef4ea4af0c670b53f9e7064 | |
download | watch-face-editor-tizen_5.0_wearable_tpk.tar.gz watch-face-editor-tizen_5.0_wearable_tpk.tar.bz2 watch-face-editor-tizen_5.0_wearable_tpk.zip |
[ABS] Merge "Implimented Highlight Feature" into tizensubmit/tizen_5.0_wearable_tpk/20181101.000009accepted/tizen/5.0/unified/20181102.025539tizen_5.0_wearable_tpkaccepted/tizen_5.0_unified
Reference: submit/tizen_5.0/20181101.000009
Commit id: 67215d5c31c6a5dfdd25cbc5a40fd04c9b87b056
Requested by: None
SDK rootstrap version: 20181031_1
-rw-r--r-- | org.tizen.watch-face-editor-1.0.0-arm-debug.tpk | bin | 0 -> 514761 bytes | |||
-rw-r--r-- | org.tizen.watch-face-editor-1.0.0-arm.tpk | bin | 0 -> 288150 bytes | |||
-rw-r--r-- | org.tizen.watch-face-editor-1.0.0-x86-debug.tpk | bin | 0 -> 512339 bytes | |||
-rw-r--r-- | org.tizen.watch-face-editor-1.0.0-x86.tpk | bin | 0 -> 288647 bytes | |||
-rw-r--r-- | packaging/org.tizen.watch-face-editor.spec | 54 |
5 files changed, 54 insertions, 0 deletions
diff --git a/org.tizen.watch-face-editor-1.0.0-arm-debug.tpk b/org.tizen.watch-face-editor-1.0.0-arm-debug.tpk Binary files differnew file mode 100644 index 0000000..a183f0e --- /dev/null +++ b/org.tizen.watch-face-editor-1.0.0-arm-debug.tpk diff --git a/org.tizen.watch-face-editor-1.0.0-arm.tpk b/org.tizen.watch-face-editor-1.0.0-arm.tpk Binary files differnew file mode 100644 index 0000000..b693795 --- /dev/null +++ b/org.tizen.watch-face-editor-1.0.0-arm.tpk diff --git a/org.tizen.watch-face-editor-1.0.0-x86-debug.tpk b/org.tizen.watch-face-editor-1.0.0-x86-debug.tpk Binary files differnew file mode 100644 index 0000000..c6cbdba --- /dev/null +++ b/org.tizen.watch-face-editor-1.0.0-x86-debug.tpk diff --git a/org.tizen.watch-face-editor-1.0.0-x86.tpk b/org.tizen.watch-face-editor-1.0.0-x86.tpk Binary files differnew file mode 100644 index 0000000..3030d6f --- /dev/null +++ b/org.tizen.watch-face-editor-1.0.0-x86.tpk diff --git a/packaging/org.tizen.watch-face-editor.spec b/packaging/org.tizen.watch-face-editor.spec new file mode 100644 index 0000000..91f7db7 --- /dev/null +++ b/packaging/org.tizen.watch-face-editor.spec @@ -0,0 +1,54 @@ +Name: org.tizen.watch-face-editor +#VCS_FROM: profile/wearable/apps/native/watch-face-editor#67215d5c31c6a5dfdd25cbc5a40fd04c9b87b056 +#RS_Ver: 20181031_1 +Summary: org.tizen.watch-face-editor +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.watch-face-editor +%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/watch-face-editor#67215d5c31c6a5dfdd25cbc5a40fd04c9b87b056 +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}/* + |