diff options
author | Cem Keylan <cem@ckyln.com> | 2020-04-29 18:10:53 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-04-29 18:10:53 +0300 |
commit | bf752fd5c047bbe0934f282addbc98e2ddc84547 (patch) | |
tree | be6b38f479f96d334ed860da872f0b02ea0e557e /extra/gstreamer/build | |
parent | 2c12616c41f186dac6af92391d2695482da3e556 (diff) | |
download | repository-bf752fd5c047bbe0934f282addbc98e2ddc84547.tar.gz |
gstreamer: add new package at 1.16.2 to extra
Diffstat (limited to 'extra/gstreamer/build')
-rwxr-xr-x | extra/gstreamer/build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/extra/gstreamer/build b/extra/gstreamer/build new file mode 100755 index 00000000..7028b78a --- /dev/null +++ b/extra/gstreamer/build @@ -0,0 +1,15 @@ +#!/bin/sh -e + +export DESTDIR="$1" + +meson \ + --prefix=/usr \ + -Dbuildtype=release \ + -Ddbghelp=disabled \ + -Dintrospection=disabled \ + -Dexample=false \ + -Dgtk_doc=disabled \ + . output + +ninja -C output +ninja -C output install |