Sha256: cb5fa25003fe26739df7f1a5cc7bcdf57183e08960a474fa6966cb5b296da8c8

Contents?: true

Size: 1003 Bytes

Versions: 3

Compression:

Stored size: 1003 Bytes

Contents

# encoding: utf-8
# Install the xapian binaries into the lib folder of the gem

require 'rbconfig'
c = Config::CONFIG

def system!(cmd)
	puts cmd
	system(cmd) or raise
end

ver = '1.2.5'
source_dir = 'xapian_source'
core = "xapian-core-#{ver}"
bindings = "xapian-bindings-#{ver}"
xapian_config = "#{Dir.pwd}/#{core}/xapian-config"

task :default do
	[core,bindings].each do |x|
		system! "tar -xzvf #{source_dir}/#{x}.tar.gz"
	end

	prefix = Dir.pwd
	ENV['LDFLAGS'] = "-R#{prefix}/lib"

	system! "mkdir -p lib"

	Dir.chdir core do
		system! "./configure --prefix=#{prefix} --exec-prefix=#{prefix}"
		system! "make clean all"
		system! "cp -r .libs/* ../lib/"
	end

	Dir.chdir bindings do
		ENV['RUBY'] ||= "#{c['bindir']}/#{c['RUBY_INSTALL_NAME']}"
		ENV['XAPIAN_CONFIG'] = xapian_config
		system! "./configure --prefix=#{prefix} --exec-prefix=#{prefix} --with-ruby"
		system! "make clean all"
	end

	system! "cp -r #{bindings}/ruby/.libs/_xapian.* lib"
	system! "cp #{bindings}/ruby/xapian.rb lib"
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
xapian_db-0.5.12 Rakefile
xapian_db-0.5.11 Rakefile
xapian_db-0.5.10 Rakefile