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")