Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alba Mendez
gst-docs
Commits
e04a1bdd
Commit
e04a1bdd
authored
May 12, 2020
by
Edward Hervey
🤘
Committed by
Edward Hervey
May 12, 2020
Browse files
contribute/plugin: More autotools removal
Part-of: <
gstreamer/gst-docs!90
>
parent
b5a79eaa
Changes
2
Hide whitespace changes
Inline
Side-by-side
markdown/contribute/index.md
View file @
e04a1bdd
...
...
@@ -230,8 +230,7 @@ does not apply any longer to master you may be asked to provide an updated
branch to merge.
If you have created a new plugin, please submit a merge request that adds it to
the gst-plugins-bad module, including
`configure.ac`
, the various
`Makefile.am`
modifications,
`meson.build`
modifications, and all new files.
the gst-plugins-bad module, including
`meson.build`
modifications, and all new files.
#### Patch Format
...
...
markdown/plugin-development/basics/boiler.md
View file @
e04a1bdd
...
...
@@ -96,18 +96,17 @@ The last command creates two files: `gstmyfilter.c` and `gstmyfilter.h`.
> It is recommended that you create a copy of the `gst-plugin` directory
> before continuing.
Now one needs to adjust the
`
Makefile.am
`
to use the new filenames and
run
`autogen.sh
`
from the parent directory to bootstrap the build
environment. After that, the project can be built and installed using
the well known
`make && sudo make install
`
commands.
Now one needs to adjust the
`
meson.build
`
to use the new filenames and
run
`meson build
`
from the parent directory to bootstrap the build
environment. After that, the project can be built and installed using
the well
known
`ninja -C build
`
commands.
> **Note**
>
> Be aware that by default `autogen.sh` and `configure` would choose
> `/usr/local` as a default location. One would need to add
> `/usr/local/lib/gstreamer-1.0` to `GST_PLUGIN_PATH` in order to make
> the new plugin show up in a gstreamer that's been installed from
> packages.
> Be aware that by default `meson` will choose `/usr/local` as a default
> location. One would need to add `/usr/local/lib/gstreamer-1.0` to
> `GST_PLUGIN_PATH` in order to make the new plugin show up in a gstreamer
> that's been installed from packages.
> **Note**
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment