From 6feac25e1891b8b79e23f64b9201bdad9440e54c Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 4 Jan 2025 16:26:49 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.4-1mamba;Sat Jan 04 2025] --- README.md | 2 ++ libtatsu.spec | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 libtatsu.spec diff --git a/README.md b/README.md index d949777..ca50f44 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # libtatsu +Library handling the communication with Apple's Tatsu Signing Server (TSS). + diff --git a/libtatsu.spec b/libtatsu.spec new file mode 100644 index 0000000..28708f1 --- /dev/null +++ b/libtatsu.spec @@ -0,0 +1,62 @@ +Name: libtatsu +Version: 1.0.4 +Release: 1mamba +Summary: Library handling the communication with Apple's Tatsu Signing Server (TSS) +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/libimobiledevice/libtatsu +Source: https://github.com/libimobiledevice/libtatsu.git/%{version}/libtatsu-%{version}.tar.bz2 +License: LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libcurl-devel +BuildRequires: libplist-devel +## AUTOBUILDREQ-END + +%description +Library handling the communication with Apple's Tatsu Signing Server (TSS). + +%package devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release} + +%description devel +This package contains libraries and header files for developing applications that use %{name}. + +%prep +%setup -q +NOCONFIGURE=1 ./autogen.sh + +%build +%configure \ + PACKAGE_VERSION=%{version} + +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files +%defattr(-,root,root) +%{_libdir}/libtatsu.so.* +%doc COPYING + +%files devel +%defattr(-,root,root) +%dir %{_includedir}/libtatsu +%{_includedir}/libtatsu/*.h +%{_libdir}/libtatsu.a +%{_libdir}/libtatsu.so +%{_libdir}/pkgconfig/libtatsu-1.0.pc +%doc NEWS README.md + +%changelog +* Sat Jan 04 2025 Silvan Calarco 1.0.4-1mamba +- package created using the webbuild interface