From d28c457bcfcb7c615e944bed1dea82fee4306449 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 20:49:20 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.10.1-1mamba;Tue Dec 22 2020] --- README.md | 3 ++ black-hole-solver.spec | 80 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+) create mode 100644 black-hole-solver.spec diff --git a/README.md b/README.md index 5f98297..f07e6f7 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # black-hole-solver +A solver, written in C, to solve Golf solitaire, the Solitaire variant called “Black Hole” and the one called “All in a Row”. +It provides a portable C library, and a command line application that after being fed with a layout will emit the cards to move. + diff --git a/black-hole-solver.spec b/black-hole-solver.spec new file mode 100644 index 0000000..eee5062 --- /dev/null +++ b/black-hole-solver.spec @@ -0,0 +1,80 @@ +Name: black-hole-solver +Version: 1.10.1 +Release: 1mamba +Summary: A solver, written in C, to solve Golf solitaire, the Solitaire variant called “Black Hole” and the one called “All in a Row” +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/ +Source: https://fc-solve.shlomifish.org/downloads/fc-solve/black-hole-solver-%{version}.tar.xz +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: ldconfig +## AUTOBUILDREQ-END +BuildRequires: cmake +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +A solver, written in C, to solve Golf solitaire, the Solitaire variant called “Black Hole” and the one called “All in a Row”. +It provides a portable C library, and a command line application that after being fed with a layout will emit the cards to move. + +%package -n lib%{name} +Group: System/Libraries +Summary: Shared libraries for %{name} + +%description -n lib%{name} +This package contains shared libraries for %{name}. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Development files for %{name} +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +Requires: pkg-config + +%description -n lib%{name}-devel +This package contains libraries and header files for developing applications that use %{name}. + + +%debug_package + +%prep +%setup -q + +%build +%cmake -d build +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall -C build + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%{_bindir}/black-hole-solve + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libblack_hole_solver.so.* +%doc COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/black-hole-solver +%{_includedir}/black-hole-solver/*.h +%{_libdir}/libblack_hole_solver.so +%{_libdir}/pkgconfig/libblack-hole-solver.pc +%{_mandir}/man6/black-hole-solve.6* +%doc README.md + +%changelog +* Tue Dec 22 2020 Silvan Calarco 1.10.1-1mamba +- package created using the webbuild interface