me
/
guix
Archived
1
0
Fork 0

gnu: lucene++: Use G-expressions.

* gnu/packages/rdf.scm (lucene++)[arguments]:
Rewrite as G-expressions.
master
Tobias Geerinckx-Rice 2022-01-05 03:38:46 +01:00
parent 8e25b0f64a
commit 8860e9db56
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 13 additions and 13 deletions

View File

@ -146,19 +146,19 @@ Java Lucene text search engine API to C++.")
"share/cmake/lucene++"))))))
(build-system cmake-build-system)
(arguments
`(#:configure-flags
(list (string-append "-DLIB_DESTINATION:PATH="
(assoc-ref %outputs "out") "/lib")
"-DINSTALL_GTEST:BOOL=OFF")
#:phases
(modify-phases %standard-phases
(replace 'check
;; XXX Tests are built unconditionally during the 'build phase.
;; There's no test target. README.md suggests running this.
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "src/test/lucene++-tester"
"--test_dir=../source/src/test/testfiles")))))))
(list #:configure-flags
#~(list (string-append "-DLIB_DESTINATION:PATH="
#$output "/lib")
"-DINSTALL_GTEST:BOOL=OFF")
#:phases
#~(modify-phases %standard-phases
(replace 'check
;; XXX Tests are built unconditionally during the 'build phase.
;; There's no test target. README.md suggests running this.
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "src/test/lucene++-tester"
"--test_dir=../source/src/test/testfiles")))))))
(native-inputs
(list pkg-config))
(inputs