diff options
Diffstat (limited to 'community/bubblewrap/build')
-rwxr-xr-x | community/bubblewrap/build | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/community/bubblewrap/build b/community/bubblewrap/build new file mode 100755 index 00000000..343e51b2 --- /dev/null +++ b/community/bubblewrap/build @@ -0,0 +1,13 @@ +#!/bin/sh -e + +export DESTDIR="$1" +export LDFLAGS="$LDFLAGS -static" + +patch -p1 < realpath-workaround.patch + +cl-meson \ + -Dprefer_static=true \ + . output + +ninja -C output +ninja -C output install |