From cc285476c8065f3a0ac45407453842e1d1bbe61e Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 18:03:33 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.12.4-1mamba;Sun May 11 2014] --- README.md | 5 ++++ spice.spec | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 spice.spec diff --git a/README.md b/README.md index e81ee84..a5d4ea6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ # spice +The Spice project aims to provide a complete open source solution for interaction with virtualized desktop devices.The Spice pr +oject deals with both the virtualized devices and the front-end. Interaction between front-end and back-end is done using VD-In +terfaces. The VD-Interfaces (VDI) enable both ends of the solution to be easily utilized by a third-party component. +This package provides the Spice server needed to build SPICE support into QEMU + diff --git a/spice.spec b/spice.spec new file mode 100644 index 0000000..04b717a --- /dev/null +++ b/spice.spec @@ -0,0 +1,85 @@ +Name: spice +Version: 0.12.4 +Release: 1mamba +Summary: The Spice server needed to build SPICE support into QEMU +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.spice-space.org +Source: http://www.spice-space.org/download/releases/spice-%{version}.tar.bz2 +License: LGPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libcelt051-devel +BuildRequires: libglib-devel +BuildRequires: libjpeg-devel +BuildRequires: libopenssl-devel +BuildRequires: libpixman-devel +BuildRequires: libsasl-devel +BuildRequires: libz-devel +## AUTOBUILDREQ-END +BuildRequires: python-pyparsing +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The Spice project aims to provide a complete open source solution for interaction with virtualized desktop devices.The Spice pr +oject deals with both the virtualized devices and the front-end. Interaction between front-end and back-end is done using VD-In +terfaces. The VD-Interfaces (VDI) enable both ends of the solution to be easily utilized by a third-party component. +This package provides the Spice server needed to build SPICE support into QEMU + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libspice-server.so.* +%doc AUTHORS COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/spice-server/spice-experimental.h +%{_includedir}/spice-server/spice.h +%{_libdir}/libspice-server.a +%{_libdir}/libspice-server.la +%{_libdir}/libspice-server.so +%{_libdir}/pkgconfig/spice-server.pc +%doc ChangeLog NEWS README + + +%changelog +* Sun May 11 2014 Silvan Calarco 0.12.4-1mamba +- package created using the webbuild interface