diff --git a/README.md b/README.md index 3d4ea83..dcf8575 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # pugixml +A light-weight C++ XML processing library. It features: +DOM-like interface with rich traversal/modification capabilities +Extremely fast non-validating XML parser which constructs the DOM tree from an XML file/buffer +XPath 1.0 implementation for complex data-driven tree queries +Full Unicode support with Unicode interface variants and automatic encoding conversions + diff --git a/pugixml.spec b/pugixml.spec new file mode 100644 index 0000000..ca7d656 --- /dev/null +++ b/pugixml.spec @@ -0,0 +1,71 @@ +Name: pugixml +Version: 1.7 +Release: 2mamba +Summary: A light-weight C++ XML processing library +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Ercole 'ercolinux' Carpanetto +URL: http://pugixml.org/ +Source: http://github.com/zeux/pugixml/releases/download/v%{version}/pugixml-%{version}.tar.gz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libgcc +BuildRequires: libstdc++6-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A light-weight C++ XML processing library. It features: +DOM-like interface with rich traversal/modification capabilities +Extremely fast non-validating XML parser which constructs the DOM tree from an XML file/buffer +XPath 1.0 implementation for complex data-driven tree queries +Full Unicode support with Unicode interface variants and automatic encoding conversions + +%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}. + +%debug_package + +%prep +%setup -q -n pugixml-%{version} + +%build +cd scripts +%cmake +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +cd scripts +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_libdir}/libpugixml.so.* + +%files devel +%defattr(-,root,root) +%doc readme.txt docs/* +%{_includedir}/*.hpp +%{_libdir}/cmake/* +%{_libdir}/*.so + +%changelog +* Thu Jan 07 2016 Silvan Calarco 1.7-2mamba +- fixed specfile name not matching Name: field + +* Mon Jan 04 2016 Ercole 'ercolinux' Carpanetto 1.7-1mamba +- package created using the webbuild interface