RubyGems questions

Hi,

I'm working to make the gem file of my library(Ruby-GetText-Package).
But I have had some troubles and I've not been able to solve it by myself.

My gemspec is attached.

My lib's directory structure is:

(root)/bin/rgettext
(root)/bin/rmsgfmt
(root)/lib/gettext.rb
(root)/lib/gettext/*.rb
(root)/lib/parser/*.rb
(root)/data/locale/(lang)/LC_MESSAGES/*.mo
(root)/ext/gettext/gettext/_local.c
(root)/ext/gettext/gettext/extconf.rb

And it's installed to:
/usr/lib/ruby/gems/1.8/gems/gettext-0.9.0/

#Almost of all files are same directory structre of my original strucre.

My questions are:

1. How to pre-compile po-files to mo-files ?
   Now it's compiled the process "ruby setup.rb setup".
   #it's written in pre-setup.rb of "setup.rb" by Minero Aoki.

2. How to install *.mo files to datadir ?
   Usually, it should be installed to "/usr/share/"(defined in rbconfig.rb).

3. How to install gettext/_locale.so correctly?
   gem installed it to:
   /usr/lib/ruby/gems/1.8/gems/gettext-0.9.0/lib/_locale.so
   But it should be installed to:
   /usr/lib/ruby/gems/1.8/gems/gettext-0.9.0/lib/gettext/_locale.so

Thanks in advance.

gettext.gemspec (1019 Bytes)

ยทยทยท

--
.:% Masao Mutoh<mutoh@highway.ne.jp>