gnu: python-apsw: Build with all extensions.

* gnu/packages/python.scm (python-apsw)[phases]: Replace build phase; add flag
  to build all extensions. Add build-test-helper to allow testing of
  extensions.
master
Jelle Licht 2017-07-22 14:23:18 +02:00
parent c1b815a5b8
commit cfd34f4316
No known key found for this signature in database
GPG Key ID: DA4597F947B41025
1 changed files with 10 additions and 0 deletions

View File

@ -6237,6 +6237,16 @@ implementation of D-Bus.")
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'build
(lambda _
(zero?
(system* "python" "setup.py" "build" "--enable-all-extensions"))))
(add-after 'build 'build-test-helper
(lambda _
(zero?
(system
(string-append "gcc -fPIC -shared -o ./testextension.sqlext "
"-I. -Isqlite3 src/testextension.c") ))))
(delete 'check)
(add-after 'install 'check
(lambda* (#:key inputs outputs #:allow-other-keys)