File stb.spec of Package failed_stb
```
Name: stb
Version: 20240910
Release: 3.1
Summary: Single-file public domain libraries for C/C++
License: Public Domain
Group: Development/Libraries/C and C++
URL: https://github.com/nothings/stb
Source0: stb-20240910.tar.xz
Patch0: fix-compile.patch
Patch1: lp64.patch
BuildRequires: gcc-c++
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
STB is a collection of single-file public domain libraries for C/C++.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build
make %{?_smp_mflags}
%install
mkdir -p %{buildroot}%{_includedir}
cp *.h %{buildroot}%{_includedir}
%files
%{_includedir}/*.h
%changelog
* Sun Aug 10 2025 Your Name <your.email@example.com> - 20240910-3.1
- Fixed patch application issues in %prep phase.
```
---