On Mon, Oct 14, 2019 at 09:06:11PM -0400, Jerry Geis wrote:
How do I tell from source rpm's:
- the build order of gstreamer packages
This isn't specifically defined in the source RPM, but rather, the RPM Spec file lists build dependencies, and you'll have to figure that out.
https://git.centos.org/rpms/gstreamer/blob/c7/f/SPECS/gstreamer.spec#_22
and the gstreamer-plugins-base source package has a bunch of dependencies too:
https://git.centos.org/rpms/gstreamer-plugins-base/blob/c7/f/SPECS/gstreamer...
- the command line args for the ./configure
https://git.centos.org/rpms/gstreamer/blob/c7/f/SPECS/gstreamer.spec#_123
Keep in mind that %configure is a macro that has many additional arguments, ones that are standardized across the build environment for CentOS. The additional arguments to %configure are gstreamer-specific.