diff options
author | Cem Keylan <cem@ckyln.com> | 2022-02-16 21:11:24 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2022-02-16 21:11:24 +0100 |
commit | 054b2d0b10d71ca7c819a88962c6d1fc6eed6261 (patch) | |
tree | ac32f054a9d794b574670bc58792dd41db964306 /extra/libxcvt/build | |
parent | b4b231544136f02db9303fdb52b461f22a03802e (diff) | |
download | repository-054b2d0b10d71ca7c819a88962c6d1fc6eed6261.tar.gz |
libxcvt: add new package at 0.1.1
Diffstat (limited to 'extra/libxcvt/build')
-rwxr-xr-x | extra/libxcvt/build | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/extra/libxcvt/build b/extra/libxcvt/build new file mode 100755 index 00000000..1e5e690f --- /dev/null +++ b/extra/libxcvt/build @@ -0,0 +1,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 |