Test ran at 2025-02-12 12:43:39.472841+00:00 SOLUTION: raylib=1.0.1: Ada bindings for Raylib Origin: commit 0fd26c4b9cbcb89fcfb8b08476aaebf16738df48 from https://github.com/Fabien-Chouteau/raylib-ada.git Properties: Author: Fabien Chouteau Description: Ada bindings for Raylib License: MIT OR Apache-2.0 WITH LLVM-exception Long_Description: # Using raylib-ada This project is available in the [Alire package manager](https://alire.ada.dev). To use it, just add `raylib` in your dependencies: ```console $ alr with raylib ``` And add the following linker switches for executable projects to link against Raylib and libmath: ``` package Linker is for Switches ("Ada") use ("-lraylib", "-lm"); end Linker; ``` # Raylib dependencies on Ubuntu/Debian When Raylib is available in the system distributions (Arch, Fedora, Msys2, Macports, Brew, etc.), Alire will install it for you so there's nothing to do here. For Ubuntu/Debian on the other hand, you have to download a Raylib release from GitHub (or build from source if you want). Alire will let you know with a message like this: ``` warn: The following external dependencies are unavailable within Alire: warn: libraylib^5 warn: They should be made available in the environment by the user. ``` Download the 5.0 release from this address: ``` $ wget https://github.com/raysan5/raylib/releases/download/5.0/raylib-5.0_linux_amd64.tar.gz ``` Extract it: ``` $ tar xf raylib-5.0_linux_amd64.tar.gz ``` Set the environment variables like so: ``` $ export C_INCLUDE_PATH=${PWD}/raylib-5.0_linux_amd64/include/:${C_INCLUDE_PATH} $ export LIBRARY_PATH=${PWD}/raylib-5.0_linux_amd64/lib/:${LIBRARY_PATH} ``` Maintainer: Fabien Chouteau Maintainers_Logins: Fabien-Chouteau Name: raylib Tag: raylib Tag: gamedev Tag: binding Version: 1.0.1 Website: Dependencies (direct): gnat>=12 & <2000 libraylib^5 Dependencies (solution): gnat=12.2.1 (gnat_native) libraylib=5.5.0 Dependencies (graph): raylib=1.0.1 --> gnat=12.2.1 (gnat_native) (>=12 & <2000) raylib=1.0.1 --> libraylib=5.5.0 (^5) LOG: Spawning: alr -d -n get --build raylib=1.0.1 Note: Deploying raylib=1.0.1... Note: Deploying libraylib=5.5.0... The system package 'mingw-w64-x86_64-raylib' is about to be installed. This action might require admin privileges and impact your system installation. Do you want Alire to install this system package? Using default: Yes resolving dependencies... looking for conflicting packages... Packages (3) mingw-w64-x86_64-gcc-libs-14.2.0-2 mingw-w64-x86_64-libwinpthread-git-12.0.0.r480.gea22a99cb-1 mingw-w64-x86_64-raylib-5.5-1 Total Download Size: 2.20 MiB Total Installed Size: 9.96 MiB :: Proceed with installation? [Y/n] :: Retrieving packages... mingw-w64-x86_64-raylib-5.5-1-any downloading... mingw-w64-x86_64-gcc-libs-14.2.0-2-any downloading... mingw-w64-x86_64-libwinpthread-git-12.0.0.r480.gea22a99cb-1-any downloading... checking keyring... checking package integrity... loading package files... checking for file conflicts... checking available disk space... :: Processing package changes... installing mingw-w64-x86_64-libwinpthread-git... installing mingw-w64-x86_64-gcc-libs... installing mingw-w64-x86_64-raylib... Note: Building raylib=1.0.1/raylib.gpr... Setup [mkdir] object directory for project Raylib [mkdir] library directory for project Raylib Compile [C] raygui_impl.c [Ada] raylib_config.ads [Ada] raylib.adb [Ada] raylib-gui.adb raylib-gui.adb:5:07: warning: possible aliasing problem for type "C_String_Array_Access" [enabled by default] raylib-gui.adb:5:07: warning: use -fno-strict-aliasing switch for references [enabled by default] raylib-gui.adb:5:07: warning: or use "pragma No_Strict_Aliasing (C_String_Array_Access);" [enabled by default] Build Libraries [gprlib] RaylibAda.lexch [archive] libRaylibAda.a [index] libRaylibAda.a raylib=1.0.1 successfully retrieved and built. Dependencies were solved as follows: +b gnat 12.2.1 (new,gnat_native,binary) +b libraylib 5.5.0 (new,system package) Found declared GPR file: raylib.gpr