contribute/plugin: More autotools removal
authorEdward Hervey <edward@centricular.com>
Tue, 12 May 2020 16:43:10 +0000 (18:43 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Tue, 12 May 2020 16:43:10 +0000 (18:43 +0200)
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-docs/-/merge_requests/90>

markdown/contribute/index.md
markdown/plugin-development/basics/boiler.md

index 852c3a58acd836afcaa8baa357a67c3a0f35cb60..77c9dc1de91841e80f2d7c6d9bf4bba21e4aeae1 100644 (file)
@@ -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
 
index dc03c26376b701f31fc633b4787930b1bd4d87f3..f960a44ae4871a7f5449107026026375ad7da772 100644 (file)
@@ -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**
 >