blob: b44749401ba8bdb82282ba75bde7a5a63fc2711d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
;;; postgresql.meta -*- Scheme -*-
((synopsis "Bindings for PostgreSQL's C-api")
(category db)
(version 4.1.3)
(author "Johannes Groedem")
(maintainer "Peter Bex")
(license "BSD")
(dependencies sql-null srfi-1 srfi-13 srfi-69)
(test-dependencies test srfi-18)
(foreign-dependencies libpq) ;; Or libpq-dev? Highly OS-dependent!
(components (extension postgresql
(custom-build "build-postgresql")
(source-dependencies
"feature-tests/connectdb-params.c"
"feature-tests/escape-identifier.c"
"feature-tests/diag-query-position.c"
"feature-tests/diag-schema-info.c"))))
|