From e38135ae3a573b30fdfb422ddaf61af27f56d9f8 Mon Sep 17 00:00:00 2001 From: zhengxiaoxiao Date: Tue, 18 Oct 2022 19:47:13 +0800 Subject: [PATCH] split itrustee_sdk into itrustee_sdk and itrustee_sdk-devel --- itrustee_sdk.spec | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/itrustee_sdk.spec b/itrustee_sdk.spec index 5f64b1a..5f5d627 100644 --- a/itrustee_sdk.spec +++ b/itrustee_sdk.spec @@ -1,6 +1,6 @@ Name: itrustee_sdk Version: 0.1.0 -Release: 5 +Release: 6 Summary: Confidential computing framework for developing TA on itrustee OS ExclusiveArch: aarch64 @@ -16,6 +16,12 @@ Provides: libteec_adaptor.so()(64bit) %description itrustee_sdk is a confidential computing framework for developing TA on itrustee OS +%package devel +Summary: Development files for %{name} +Requires: %{name} = %{version}-%{release} +%description devel +The %{name}-devel is package contains Header file for developing applications that +us %{name} %prep %autosetup -n %{name} -p1 @@ -30,16 +36,25 @@ make %install install -d %{buildroot}/opt/ install -d %{buildroot}/lib64/ +install -d %{buildroot}/%{_sysconfdir}/secGear/cloud/ make install DESTDIR=%{buildroot}/ +install -pm 644 build/signtools/cloud/rsa_public_key_cloud.pem %{buildroot}/%{_sysconfdir}/secGear/cloud strip %{buildroot}/lib64/*.so -%files +%files devel %defattr(-,root,root) /opt/itrustee_sdk +%{_sysconfdir}/secGear/cloud/rsa_public_key_cloud.pem + +%files +%defattr(-,root,root) /lib64/libteec_adaptor.so %changelog +* Tue Oct 18 2022 zhengxiaoxiao - 0.1.0-6 +- split itrustee_sdk into itrustee_sdk and itrustee_sdk-devel + * Mon Jun 27 2022 gaoyusong - 0.1.0-5 - add ftrapv, strip, and FS as the compiling flags -- Gitee