gnu: qrencode: Enable tests.
* gnu/packages/aidc.scm (qrencode)[arguments]: Add configure-flag to build tests. Use custom 'check phase to run tests.master
parent
bdc72870af
commit
414fc58cef
|
@ -117,6 +117,16 @@ formats.")
|
||||||
(base32
|
(base32
|
||||||
"08v9d8jn26bva2a8x4hghq3mgl8zcid393iqkidwyhc05xrxjmg4"))))
|
"08v9d8jn26bva2a8x4hghq3mgl8zcid393iqkidwyhc05xrxjmg4"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '("--with-tests")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(with-directory-excursion "tests"
|
||||||
|
(invoke "./test_basic.sh")))
|
||||||
|
#t)))))
|
||||||
(inputs `(("libpng" ,libpng)))
|
(inputs `(("libpng" ,libpng)))
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||||
(synopsis "Encode data into a QR Code symbol")
|
(synopsis "Encode data into a QR Code symbol")
|
||||||
|
|
Reference in New Issue