diff options
author | Denis Dolzhenko <d.dolzhenko@samsung.com> | 2017-05-11 17:31:24 +0900 |
---|---|---|
committer | Denis Dolzhenko <d.dolzhenko@samsung.com> | 2017-05-11 17:31:24 +0900 |
commit | 4d0a610d168b1ac58e887e2a1df0926f7e18db21 (patch) | |
tree | da1356bda85ff4dcf0468da95e27ab14eb16ebaf | |
download | stopwatch-4d0a610d168b1ac58e887e2a1df0926f7e18db21.tar.gz stopwatch-4d0a610d168b1ac58e887e2a1df0926f7e18db21.tar.bz2 stopwatch-4d0a610d168b1ac58e887e2a1df0926f7e18db21.zip |
[ABS] Rename package namesubmit/tizen_unified_tpk/20170511.083028accepted/tizen/unified/20170511.173731
Add .gitignore
Add CLI build
Reference: submit/tizen/20170511.083028
Commit id: e1016433986b7cdf30c7d26af9c21eb30010fc88
Requested by: d.dolzhenko@samsung.com
SDK rootstrap version: 20170510_2
-rw-r--r-- | org.tizen.w-stopwatch-1.0.0-arm-debug.tpk | bin | 0 -> 524131 bytes | |||
-rw-r--r-- | org.tizen.w-stopwatch-1.0.0-arm.tpk | bin | 0 -> 351732 bytes | |||
-rw-r--r-- | org.tizen.w-stopwatch-1.0.0-x86-debug.tpk | bin | 0 -> 519389 bytes | |||
-rw-r--r-- | org.tizen.w-stopwatch-1.0.0-x86.tpk | bin | 0 -> 350656 bytes | |||
-rw-r--r-- | packaging/org.tizen.w-stopwatch.spec | 51 |
5 files changed, 51 insertions, 0 deletions
diff --git a/org.tizen.w-stopwatch-1.0.0-arm-debug.tpk b/org.tizen.w-stopwatch-1.0.0-arm-debug.tpk Binary files differnew file mode 100644 index 0000000..b8f55cd --- /dev/null +++ b/org.tizen.w-stopwatch-1.0.0-arm-debug.tpk diff --git a/org.tizen.w-stopwatch-1.0.0-arm.tpk b/org.tizen.w-stopwatch-1.0.0-arm.tpk Binary files differnew file mode 100644 index 0000000..e380584 --- /dev/null +++ b/org.tizen.w-stopwatch-1.0.0-arm.tpk diff --git a/org.tizen.w-stopwatch-1.0.0-x86-debug.tpk b/org.tizen.w-stopwatch-1.0.0-x86-debug.tpk Binary files differnew file mode 100644 index 0000000..0ee0117 --- /dev/null +++ b/org.tizen.w-stopwatch-1.0.0-x86-debug.tpk diff --git a/org.tizen.w-stopwatch-1.0.0-x86.tpk b/org.tizen.w-stopwatch-1.0.0-x86.tpk Binary files differnew file mode 100644 index 0000000..9795b01 --- /dev/null +++ b/org.tizen.w-stopwatch-1.0.0-x86.tpk diff --git a/packaging/org.tizen.w-stopwatch.spec b/packaging/org.tizen.w-stopwatch.spec new file mode 100644 index 0000000..71dd4aa --- /dev/null +++ b/packaging/org.tizen.w-stopwatch.spec @@ -0,0 +1,51 @@ +Name: org.tizen.w-stopwatch +#VCS_FROM: profile/wearable/apps/native/stopwatch#e1016433986b7cdf30c7d26af9c21eb30010fc88 +#RS_Ver: 20170510_2 +Summary: w-stopwatch +Version: 1.0.0 +Release: 1 +Group: N/A +License: N/A +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-stopwatch +%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/stopwatch#e1016433986b7cdf30c7d26af9c21eb30010fc88 +This is a container package which have preload TPK 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}/* |