Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gstreamer: add linbice dependency #161361

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Formula/g/gstreamer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ class Gstreamer < Formula
desc "Development framework for multimedia applications"
homepage "https://gstreamer.freedesktop.org/"
license all_of: ["LGPL-2.0-or-later", "LGPL-2.1-or-later", "MIT"]
revision 1

stable do
url "https://gitlab.freedesktop.org/gstreamer/gstreamer/-/archive/1.22.9/gstreamer-1.22.9.tar.gz"
Expand Down Expand Up @@ -62,6 +63,7 @@ class Gstreamer < Formula
depends_on "jpeg-turbo"
depends_on "json-glib"
depends_on "lame"
depends_on "libnice"
depends_on "libogg"
depends_on "libpng"
depends_on "libpthread-stubs"
Expand Down Expand Up @@ -202,6 +204,11 @@ def install
def caveats
<<~EOS
All gst-* GStreamer plugins are now bundled in this formula.

GStreamer plugins are located in `#{HOMEBREW_PREFIX}/lib/gstreamer-1.0`
and `GST_PLUGIN_SYSTEM_PATH` needs to be set accordingly:
export GST_PLUGIN_SYSTEM_PATH="#{HOMEBREW_PREFIX}/lib/gstreamer-1.0"

For GStreamer to find your own plugins, add their paths to `GST_PLUGIN_PATH`.
For example, if you have plugins in `~/.local/lib/gstreamer-1.0`:
export GST_PLUGIN_PATH="~/.local/lib/gstreamer-1.0"
Expand Down
Loading