how to include a .so file in my python rpm

2011-01-26 Thread Erik Blankinship
In my python application, I need to include a .so binary I built of a custom gstreamer plugin. My python application works fine with this plugin when launching from the command line. Now that I am packaging my python application into a fedora rpm, I need to compile the plugin as part of the

Re: how to include a .so file in my python rpm

2011-01-26 Thread Robin Lee
Just remove the line 'BuildArch: noarch' from your specfile? On Wed, Jan 26, 2011 at 9:59 PM, Erik Blankinship jedier...@gmail.comwrote: In my python application, I need to include a .so binary I built of a custom gstreamer plugin. My python application works fine with this plugin when

Re: how to include a .so file in my python rpm

2011-01-26 Thread Erik Blankinship
On Wed, Jan 26, 2011 at 10:15 AM, Robin Lee robinlee.s...@gmail.com wrote: Just remove the line 'BuildArch: noarch' from your specfile? That was easy! Thank you. Now, if I wanted to build a noarch rpm, is there an example of how I would go about building my custom gstreamer .so plugin