From e2c9498a866ef135d8016f4a42054e536741d49d Mon Sep 17 00:00:00 2001 From: JEAN-FRANCOIS GUILLAUME Date: Wed, 23 Mar 2022 17:02:59 +0100 Subject: [PATCH] adding apptainer 1.0.1 --- glicid/packages/linux.scm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/glicid/packages/linux.scm b/glicid/packages/linux.scm index 0102c67..ee1281b 100644 --- a/glicid/packages/linux.scm +++ b/glicid/packages/linux.scm @@ -215,7 +215,7 @@ (replace 'configure (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) (begin - (invoke "echo" "1.0.1" ">" "VERSION") + (invoke "echo 1.0.1" ">" "VERSION") (invoke "./mconfig" "--localstatedir=/var") ) ) @@ -223,10 +223,18 @@ (replace 'build (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) (begin - (invoke "make" "-C" "buildir") + (invoke "make" "-C" "builddir") ) ) ) + (replace 'install + (lambda* (#:key inputs native-inputs propagated-inputs configure-flags #:allow-other-keys) + (begin + (invoke "make" "-C" "builddir" "install") + ) + ) + ) + (add-before 'configure 'set-version (add-before 'configure 'set-version (lambda* (#:key input #:allow-other-keys) (invoke "echo" "1.0.1" ">" "VERSION")