blob: 1e5e690f1e6f98b4218f2467ef7ca6c98adcfee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
# Very small library only needed by X server. We don't need shared libraries
# for this package.
clsed 's/shared_library/static_library/;/version/d' lib/meson.build
export DESTDIR="$1"
cl-meson \
. output
ninja -C output
ninja -C output install
|