fixed specfile name not matching Name: field [release 1.7-2mamba;Thu Jan 07 2016]

This commit is contained in:
Silvan Calarco 2024-01-06 10:34:58 +01:00
parent 51e894f54d
commit 7360e3aed0
2 changed files with 77 additions and 0 deletions

View File

@ -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

71
pugixml.spec Normal file
View File

@ -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 <ercole69@gmail.com>
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 <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