pugixml/pugixml.spec

75 lines
2.1 KiB
RPMSpec

Name: pugixml
Version: 1.11.4
Release: 1mamba
Summary: A light-weight C++ XML processing library
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
URL: https://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
%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
%cmake
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libpugixml.so.*
%doc LICENSE.md
%files devel
%defattr(-,root,root)
%{_includedir}/*.hpp
%{_libdir}/libpugixml.so
%dir %{_libdir}/cmake/pugixml
%{_libdir}/cmake/pugixml/pugixml*.cmake
%{_libdir}/pkgconfig/pugixml.pc
%doc readme.txt
%changelog
* Sat Feb 27 2021 Automatic Build System <autodist@mambasoft.it> 1.11.4-1mamba
- automatic version update by autodist
* Thu Jan 07 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 1.7-2mamba
- fixed specfile name not matching Name: field
* Mon Jan 04 2016 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 1.7-1mamba
- package created using the webbuild interface