How to Install and Uninstall stb_rect_pack-devel.x86_64 Package on Rocky Linux 9

Last updated: May 06,2024

1. Install "stb_rect_pack-devel.x86_64" package

Please follow the guidelines below to install stb_rect_pack-devel.x86_64 on Rocky Linux 9

$ sudo dnf update $ sudo dnf install stb_rect_pack-devel.x86_64

2. Uninstall "stb_rect_pack-devel.x86_64" package

Please follow the guidance below to uninstall stb_rect_pack-devel.x86_64 on Rocky Linux 9:

$ sudo dnf remove stb_rect_pack-devel.x86_64 $ sudo dnf autoremove

3. Information about the stb_rect_pack-devel.x86_64 package on Rocky Linux 9

Last metadata expiration check: 1:48:08 ago on Fri Feb 16 06:49:52 2024.
Available Packages
Name : stb_rect_pack-devel
Version : 1.1^20231011gitbeebb24
Release : 12.el9
Architecture : x86_64
Size : 18 k
Source : stb-0^20231011gitbeebb24-12.el9.src.rpm
Repository : epel
Summary : Simple 2D rectangle packer with decent quality
URL : https://github.com/nothings/stb
License : MIT OR Unlicense
Description : Useful for e.g. packing rectangular textures into an atlas. Does not do
: rotation.
:
: Not necessarily the awesomest packing method, but better than the totally naive
: one in stb_truetype (which is primarily what this is meant to replace).
:
: No memory allocations; uses qsort() and assert() from stdlib. Can override
: those by defining STBRP_SORT and STBRP_ASSERT.
:
: This library currently uses the Skyline Bottom-Left algorithm.
:
: Please note: better rectangle packers are welcome! Please implement them to the
: same API, but with a different init function.