diff --git a/itrustee_sdk.spec b/itrustee_sdk.spec index 5f64b1a1ed52af37bd18e62ee4073ccb49e0e636..5f5d6278963272420f8a65aafb1e9099eef0b901 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