mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
14 lines
206 B
Bash
Executable File
14 lines
206 B
Bash
Executable File
#!/bin/sh
|
|
|
|
meson \
|
|
-Db_lto=false \
|
|
-Dbuild-tests=false \
|
|
-Dbuild-examples=false \
|
|
-Dbuild-documentation=false \
|
|
-Ddefault_library='static' \
|
|
. output
|
|
|
|
meson compile -C output
|
|
|
|
meson install -C output
|