%define release_tag 3.2.0-1092 %define minor_release 1092 name: netcoredbg version: 3.2.0 release: %{minor_release}%{?dist} summary: debugger for .net core runtime license: mit url: https://github.com/samsung/%{name} source0: https://github.com/samsung/%{name}/archive/refs/tags/%{release_tag}.tar.gz BuildRequires: dotnet-sdk-10.0 BuildRequires: clang BuildRequires: cmake BuildRequires: make Requires: dotnet-runtime-10.0 Requires: glibc Requires: libgcc %description The NetCoreDbg debugger implements GDB/MI and VSCode Debug Adapter Protocol in a unified framework, allowing the debugging of .NET apps under the .NET Core runtime as well as facilitating debugging from the command line (such as in GDB). %prep %autosetup -n %{name}-%{release_tag} %build mkdir -p build cd build CC=clang CXX=clang++ cmake .. make %install cd build make install DESTDIR=%{buildroot} # symlink for path mkdir -p %{buildroot}%{_bindir} ln -s /usr/local/netcoredbg %{buildroot}%{_bindir}/netcoredbg %files %{_prefix}/local/netcoredbg %{_prefix}/local/*.dll %{_prefix}/local/*.so %{_bindir}/netcoredbg %license LICENSE %doc README.md %changelog * Wed Sep 02 2026 builder - 3.2.0 - Initial Fedora COPR package