From: Detlef R. <det...@gm...> - 2014-06-11 15:06:10
|
Am 03.06.2014 20:43, schrieb ma...@sa...: > Hi, > > for some reason I would like to maintain my own fork of Ruby/GStreamer. > > I don't need any other lib. > > I've cloned the ruby-gnome2 repository, and typed the following > > ruby extconf.rb glib2 gobject-introspection gio2 gstreamer > make > > and the compilation succeeded. > > How can I turn the outcome into gem, similar to official "gstreamer" gem? Hi, you can build the gems in the following way: cd gobject-introspection rake gem # builds the gem in pkg cd pkg gem install -l *.gem # install the gem as root cd ../../gstreamer rake gem cd pkg gem install -l *.gem # as root Cheers, detlef |