File bird.spec of Package failed_expat
#
# spec file for package expat
#
# Minimal spec adapted for package 'expat'.
#
Name: expat
Version: 2.5.0
Release: 1%{?dist}
Summary: XML 1.0 parser library written in C
License: MIT
Group: Development/Libraries
URL: https://libexpat.github.io/
Source0: https://github.com/libexpat/libexpat/releases/download/R_%{version:/./_/}/expat-%{version}.tar.xz
BuildRequires: gcc
BuildRequires: make
BuildRequires: pkgconfig
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: libtool
BuildRequires: xz
BuildRequires: tar
BuildArch: %_arch
%description
Expat is a fast streaming XML parser library written in C.
%prep
%setup -q -n expat-%{version}
%build
%if %{?_uses_autotools}
%autoreconf -fi
%endif
%configure --disable-static --with-pic
%make_build
%install
%make_install DESTDIR=%{buildroot}
%files
%license LICENSE
%doc README.md
%{_libdir}/libexpat.so.*
%{_includedir}/expat.h
%{_includedir}/expat/*.h
%changelog