diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-21 22:28:02 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-03-21 22:28:02 +0100 |
commit | d03e27da962797cc9f4a4dc4e1b51361abf3f989 (patch) | |
tree | a0cd944dbdace628d583963dccd801ab61d3825c /packages/komodo | |
parent | f57c3848b6eb42a24221e522020c1e468e5355d6 (diff) |
antara-gaming-sdk: include loguru as dependency
Diffstat (limited to 'packages/komodo')
-rw-r--r-- | packages/komodo/antara-gaming-sdk.scm | 43 |
1 files changed, 36 insertions, 7 deletions
diff --git a/packages/komodo/antara-gaming-sdk.scm b/packages/komodo/antara-gaming-sdk.scm index 8f2137c..61ddfea 100644 --- a/packages/komodo/antara-gaming-sdk.scm +++ b/packages/komodo/antara-gaming-sdk.scm @@ -5,6 +5,7 @@ #:use-module (gnu packages pretty-print) #:use-module (guix build utils) #:use-module (guix build-system cmake) + #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) #:use-module ((guix licenses) @@ -28,18 +29,45 @@ (define antara-gaming-sdk-version "1.1.0-alpha") +(define build-path-prefix "../build/_deps/") + (define find-entt "find_package(EnTT)\n") (define find-fmt "find_package(fmt)\n") +(define loguru-hash + (content-hash "1lig80s99kk5yjs7yn5nfm7jfz8982hink5ff7pzi4afkab2hbcd")) + +(define loguru-src "loguru-src/") + +;;; ABSTRACTION LAYER -5 + +(define build-path-loguru + (string-append build-path-prefix loguru-src)) + +(define loguru-origin + (origin (uri "https://github.com/emilk/loguru/archive/v2.1.0.zip") + (method url-fetch) + (hash loguru-hash))) + ;;; ABSTRACTION LAYER -4 +(define download-loguru + `(string-append "3.14)\n\n" "file(ARCHIVE_EXTRACT INPUT " ,loguru-origin " " + "DESTINATION " ,build-path-loguru ")\n" + "file(COPY " ,build-path-loguru "/loguru-2.1.0/ " + "DESTINATION " ,build-path-loguru ")\n")) + (define find-package-calls (string-append "Dependancies\n" "\n" find-fmt find-entt "\n")) ;;; ABSTRACTION LAYER -3 -(define find-more-packages +(define get-loguru + `(substitute* "CMakeLists.txt" + (("3.14\\)") ,download-loguru))) + +(define get-more-packages `(substitute* "cmake/dependencies.cmake" (("Dependancies") ,find-package-calls))) @@ -51,18 +79,19 @@ ;;; ABSTRACTION LAYER -2 -(define patch-cmake +(define supplement-libs `(lambda _ - ,find-more-packages + ,get-loguru + ,get-more-packages ,rename-doom-targets)) ;;; ABSTRACTION LAYER -1 (define antara-gaming-sdk-phases - `(modify-phases %standard-phases - (add-after 'unpack - 'patch-cmake - ,patch-cmake))) + #~ (modify-phases %standard-phases + (add-after 'unpack + 'supplement-libs + #+ supplement-libs))) (define antara-gaming-sdk-git-reference (git-reference (url antara-gaming-sdk-github) |