mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: lmdb: Install pkg-config file.
* gnu/packages/databases.scm (lmdb)[arguments]: Add phase to create a lmdb.pc file.
This commit is contained in:
parent
f80ddc64c6
commit
46c2cf6902
1 changed files with 19 additions and 1 deletions
|
@ -2352,7 +2352,25 @@ (define-public lmdb
|
|||
(chdir "libraries/liblmdb")
|
||||
(substitute* "Makefile"
|
||||
(("/usr/local") (assoc-ref outputs "out")))
|
||||
#t)))))
|
||||
#t))
|
||||
(add-after 'install 'create-pkg-config-file
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(mkdir-p (string-append out "/lib/pkgconfig"))
|
||||
(with-output-to-file (string-append out "/lib/pkgconfig/liblmdb.pc")
|
||||
(lambda _
|
||||
(format #t "prefix=~a~@
|
||||
exec_prefix=~a~@
|
||||
libdir=~a/lib~@
|
||||
includedir=~a/include~@
|
||||
~@
|
||||
Name: liblmdb~@
|
||||
Version: ~a~@
|
||||
Description: Lightning Memory-Mapped Database library~@
|
||||
Libs: -L${libdir} -llmdb~@
|
||||
Cflags: -I${includedir}~%"
|
||||
out out out out ,version)))
|
||||
#t))))))
|
||||
(home-page "https://symas.com/lmdb/")
|
||||
(synopsis "Lightning Memory-Mapped Database library")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue