We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9b89ad commit 4862598Copy full SHA for 4862598
.github/workflows/haskell.yml
@@ -153,6 +153,8 @@ jobs:
153
run: |
154
brew install libsodium
155
brew install lmdb
156
+ # LMDB is distributed without pkg-config file
157
+ cp $(pwd)/.github/workflows/lmdb.pc /usr/local/lib/pkgconfig/lmdb.pc
158
159
- name: "MAC: Install build environment (secp256k1)"
160
if: matrix.os == 'macos-latest'
.github/workflows/lmdb.pc
@@ -0,0 +1,11 @@
1
+prefix=/usr/local
2
+exec_prefix=${prefix}
3
+libdir=${exec_prefix}/lib
4
+includedir=${exec_prefix}/include
5
+
6
+Name: liblmdb
7
+Description: Lightning Memory-Mapped Database
8
+URL: https://symas.com/products/lightning-memory-mapped-database/
9
+Version: 0.9.29
10
+Libs: -L${libdir} -llmdb
11
+Cflags: -I${includedir}
0 commit comments