1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-16 01:08:31 -04:00
elinks/docker/alpine-static/build_xmlplusplus.sh

14 lines
206 B
Bash
Raw Normal View History

2022-12-01 12:03:29 -05:00
#!/bin/sh
2022-12-02 06:14:14 -05:00
meson \
-Db_lto=false \
-Dbuild-tests=false \
-Dbuild-examples=false \
-Dbuild-documentation=false \
-Ddefault_library='static' \
. output
2022-12-01 12:03:29 -05:00
2022-12-02 06:14:14 -05:00
meson compile -C output
2022-12-01 12:03:29 -05:00
2022-12-02 06:14:14 -05:00
meson install -C output