We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd9c0c3 commit e9d5f02Copy full SHA for e9d5f02
1 file changed
README.md
@@ -99,6 +99,22 @@ pkg install devel/cmake devel/boost-libs textproc/expat2 \
99
databases/postgresql94-client graphics/proj lang/lua52
100
```
101
102
+On Alpine, use
103
+
104
+```sh
105
+apk --update-cache add cmake make g++ boost-dev expat-dev \
106
+ bzip2-dev zlib-dev libpq proj-dev lua5.3-dev
107
+```
108
109
+Due to Lua installation details, CMake only detects some of the
110
+required Lua paths on Alpine, but not the library.
111
+This can be resolved by setting the `LUA_DIR` environment variable,
112
+or you can modify `CMAKE_PREFIX_PATH` as mentioned below.
113
114
115
+export LUA_DIR=<path> # Defaults to /usr/lib/lua5.3/
116
117
118
Once dependencies are installed, use CMake to build the Makefiles in a separate
119
folder:
120
0 commit comments