diff options
author | Cem Keylan <cem@ckyln.com> | 2021-09-09 22:43:55 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-09-09 22:43:55 +0300 |
commit | fe2ea28b5a5e89a22b873d44bc4673e6dea91a9a (patch) | |
tree | 4a9ce1b9e998e4515ccb4e30c1ddb2b832f5f7e6 /extra/gcr | |
parent | 2a66b1b3161182b232a9e4aebe79fb5072f3d515 (diff) | |
download | repository-fe2ea28b5a5e89a22b873d44bc4673e6dea91a9a.tar.gz |
gcr: use cl-meson
Diffstat (limited to 'extra/gcr')
-rwxr-xr-x | extra/gcr/build | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/extra/gcr/build b/extra/gcr/build index 74bf84da..bda7b938 100755 --- a/extra/gcr/build +++ b/extra/gcr/build @@ -1,14 +1,11 @@ #!/bin/sh -e -export DESTDIR="$1" +export DESTDIR=$1 -mkdir gcr-build -cd gcr-build - -meson \ - --prefix=/usr \ +cl-meson \ -Dintrospection=false \ - -Dgtk_doc=false .. + -Dgtk_doc=false \ + . output -ninja -ninja install +ninja -C output +ninja -C output install |