earbuds: disable updateScript (#374592)
[NixPkgs.git] / pkgs / development / ruby-modules / gem-config / xapian-Rakefile
blob54412ff810b030b0b259cc76ee3f991559d2ffe4
1 # encoding: utf-8
2 # Install the xapian binaries into the lib folder of the gem
3 require 'rbconfig'
5 c = RbConfig::CONFIG
7 source_dir = 'xapian_source'
8 bindings = Dir["#{source_dir}/xapian-bindings-*"].first
9 bindings = File.basename(bindings, ".tar.xz")
11 task :default do
12   sh "tar -xJf #{source_dir}/#{bindings}.tar.xz"
14   prefix = Dir.pwd
15   ENV['LDFLAGS'] = "-L#{prefix}/lib"
17   sh "mkdir -p lib"
19   Dir.chdir bindings do
20     ENV['RUBY'] ||= "#{c['bindir']}/#{c['RUBY_INSTALL_NAME']}"
21     sh "./configure --prefix=#{prefix} --exec-prefix=#{prefix} --with-ruby"
22     sh "make clean all"
23   end
25   sh "cp -r #{bindings}/ruby/.libs/_xapian.* lib"
26   sh "cp #{bindings}/ruby/xapian.rb lib"
28   sh "rm lib/*.la"
29   sh "rm lib/*.lai"
31   sh "rm -R #{bindings}"
32   sh "rm -R #{source_dir}"
33 end