diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-10-16 20:07:09 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-10-17 17:11:37 +0200 |
commit | a6e25a50f9b560291889e87401d5c9ec598a89fa (patch) | |
tree | 2804b0396642a935e3e7852f25e5ee4032bb13ba /gnu/packages | |
parent | 8a666bc5cb3c50b4b881290c7776c3f681a734bc (diff) | |
download | guix-a6e25a50f9b560291889e87401d5c9ec598a89fa.tar guix-a6e25a50f9b560291889e87401d5c9ec598a89fa.tar.gz |
gnu: sfml: Install pkgconfig files.
* gnu/packages/game-development.scm (sfml)[arguments]: Add configure
flag to install pkgconfig files.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/game-development.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/game-development.scm b/gnu/packages/game-development.scm index 5e6cf0b234..de0b842b48 100644 --- a/gnu/packages/game-development.scm +++ b/gnu/packages/game-development.scm @@ -183,7 +183,9 @@ clone.") "0k2fl5xk3ni2q8bsxl0551inx26ww3w6cp6hssvww0wfjdjcirsm")))) (build-system cmake-build-system) (arguments - '(#:tests? #f)) ; no tests + '(#:configure-flags + (list "-DSFML_INSTALL_PKGCONFIG_FILES=TRUE") + #:tests? #f)) ; no tests (inputs `(("mesa" ,mesa) ("glew" ,glew) |