diff options
author | Marius Bakke <marius@gnu.org> | 2022-11-20 14:32:47 +0100 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-14 15:10:57 -0400 |
commit | b0d378256e9976748250b1d4272d85a514a0070e (patch) | |
tree | 9a4c11d26deb2fd613c105abe6644c7c0794a211 /gnu/packages/gl.scm | |
parent | 399dd75f3a2fd7bb54c7987fba20b980f38a0579 (diff) |
gnu: glew: Omit static library.
* gnu/packages/gl.scm (glew)[arguments]: Add phase to delete libGLEW.a. While
at it, convert to G-expression.
Diffstat (limited to 'gnu/packages/gl.scm')
-rw-r--r-- | gnu/packages/gl.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index b945c6c5b8..fd69e6dbeb 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -632,12 +632,15 @@ glxdemo, glxgears, glxheads, and glxinfo.") #t)))) (build-system gnu-build-system) (arguments - '(#:phases (modify-phases %standard-phases (delete 'configure)) - #:make-flags (list (string-append "GLEW_PREFIX=" - (assoc-ref %outputs "out")) - (string-append "GLEW_DEST=" - (assoc-ref %outputs "out"))) - #:tests? #f)) ;no 'check' target + (list #:make-flags #~(list (string-append "GLEW_PREFIX=" #$output) + (string-append "GLEW_DEST=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (add-after 'install 'delete-static + (lambda _ + (delete-file (string-append #$output "/lib/libGLEW.a"))))) + #:tests? #f)) ;no 'check' target (inputs (list libxi libxmu libx11 mesa)) |