From 9bb509497d3aad1f370ac53d628d3b6553d13241 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 20:03:48 +0100 Subject: [PATCH] package created using the webbuild interface [release 2.3-1mamba;Sat Oct 24 2015] --- README.md | 2 ++ zenxml.spec | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 zenxml.spec diff --git a/README.md b/README.md index 1cfaab1..7218115 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # zenxml +Simple C++ XML processing. + diff --git a/zenxml.spec b/zenxml.spec new file mode 100644 index 0000000..2f0959d --- /dev/null +++ b/zenxml.spec @@ -0,0 +1,56 @@ +Name: zenxml +Version: 2.3 +Release: 1mamba +Summary: Simple C++ XML processing +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://sourceforge.net/projects/zenxml/ +Source: http://downloads.sourceforge.net/project/zenxml/zenXml_%{version}.zip +License: GPL +## AUTOBUILDREQ-BEGIN +## note: run 'autospec -u -a6 zenxml' to get the list of build requirements. +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Simple C++ XML processing. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + + +%debug_package + +%prep +%setup -q -c %{name}-%{version} + +%build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +install -d -m0755 %{buildroot}%{_includedir}/zen +cp zen/*.h %{buildroot}%{_includedir}/zen/ + +install -d -m0755 %{buildroot}%{_includedir}/zenxml +cp zenxml/*.h %{buildroot}%{_includedir}/zenxml/ + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/zen +%{_includedir}/zen/*.h +%dir %{_includedir}/zenxml +%{_includedir}/zenxml/*.h +%doc License.txt + +%changelog +* Sat Oct 24 2015 Silvan Calarco 2.3-1mamba +- package created using the webbuild interface