Skip to content
Snippets Groups Projects
Verified Commit 6216778e authored by FARGES Olivier's avatar FARGES Olivier
Browse files

hash 32 update

parent 2a549fef
No related branches found
No related tags found
No related merge requests found
...@@ -43,4 +43,3 @@ ...@@ -43,4 +43,3 @@
(synopsis "Bibliothèque de générateurs de nombres pseudo-aléatoires") (synopsis "Bibliothèque de générateurs de nombres pseudo-aléatoires")
(description "Random123 est une bibliothèque pour des générateurs de nombres pseudo-aléatoires (PRNG) rapides et parallélisables.") (description "Random123 est une bibliothèque pour des générateurs de nombres pseudo-aléatoires (PRNG) rapides et parallélisables.")
(license bsd-3))) (license bsd-3)))
random123
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#:use-module (edix packages star-2d) #:use-module (edix packages star-2d)
#:use-module (edix packages rsys)) #:use-module (edix packages rsys))
(define-public star-enclosures-2d (define-public star-enclosures-2d
(package (package
(name "star-enclosures-2d") (name "star-enclosures-2d")
......
...@@ -17,7 +17,6 @@ ...@@ -17,7 +17,6 @@
#:use-module (edix packages rsys)) #:use-module (edix packages rsys))
(define-public star-enclosures-3d (define-public star-enclosures-3d
(package (package
(name "star-enclosures-3d") (name "star-enclosures-3d")
...@@ -28,27 +27,22 @@ ...@@ -28,27 +27,22 @@
(url "https://gitlab.com/meso-star/star-enclosures-3d.git") (url "https://gitlab.com/meso-star/star-enclosures-3d.git")
(commit "0.7.2"))) (commit "0.7.2")))
(sha256 (sha256
(base32 "1jh0q1lmxc7lp820dzip5i18pr2h1ygsly5iss10593y95d58sj6")))) (base32 "1lf28q934yrr59dryrp0qgidi00y4fickdc0qxg7w53f4n45f0b0"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
(list pkg-config autoconf automake libtool rsys star-3d)) (list pkg-config autoconf automake libtool))
(inputs (inputs
(list gcc (list gcc
gfortran gfortran
bash bash
gnu-make gnu-make rsys star-3d
)) ))
(arguments (arguments
`(#:make-flags (list (string-append "CC=gcc" )) `(#:make-flags (list (string-append "CC=gcc" ))
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure)
(delete 'check) (delete 'check)
;(add-before 'build 'set-pkg-config-path
; (lambda* (#:key inputs #:allow-other-keys)
; (let ((pkgconfig-path (string-append (assoc-ref inputs "star-3d") "/lib/pkgconfig")))
; (setenv "PKG_CONFIG_PATH" (string-append pkgconfig-path ":" (or (getenv "PKG_CONFIG_PATH") "")))
; (format #t "PKG_CONFIG_PATH set to: ~a~%" (getenv "PKG_CONFIG_PATH")))))
(replace 'build (replace 'build
(lambda* (#:key make-flags #:allow-other-keys) (lambda* (#:key make-flags #:allow-other-keys)
(invoke "make" (string-join make-flags " ")))) (invoke "make" (string-join make-flags " "))))
...@@ -56,7 +50,8 @@ ...@@ -56,7 +50,8 @@
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out"))) (let ((out (assoc-ref outputs "out")))
(invoke "make" "install" (string-append "PREFIX=" out)))))))) (invoke "make" "install" (string-append "PREFIX=" out))))))))
(home-page "https://meso-star.com/star-vx") ;; Remplacez avec le bon lien
(synopsis "Bibliothèque Star-VX") (home-page "https://meso-star.com/star-enclosures-3d") ;; Remplacez avec le bon lien
(description "Star-VX est une bibliothèque de traitement de structures de données arborescentes.") (synopsis "Bibliothèque Star-enclosures-3d")
(description "Star-enclosures-3d")
(license (list gpl3+)))) (license (list gpl3+))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment