1 # libguestfs Ruby bindings -*- ruby -*-
3 # Copyright (C) 2009 Red Hat Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 require 'rake/rdoctask'
21 require 'rake/testtask'
22 require 'rake/gempackagetask'
24 PKG_NAME='@PACKAGE_NAME@'
25 PKG_VERSION='@PACKAGE_VERSION@'
27 EXT_CONF='@srcdir@/ext/guestfs/extconf.rb'
28 MAKEFILE='@builddir@/ext/guestfs/Makefile'
29 GUESTFS_MODULE='@builddir@/ext/guestfs/_guestfs.so'
30 GUESTFS_SRC='@srcdir@/ext/guestfs/_guestfs.c'
32 CLEAN.include [ "@builddir@/ext/**/*.o", GUESTFS_MODULE,
33 "@builddir@/ext/**/depend" ]
35 CLOBBER.include [ "@builddir@/config.save", "@builddir@/ext/**/mkmf.log",
40 file MAKEFILE => EXT_CONF do |t|
41 unless sh "top_srcdir=$(pwd)/@top_srcdir@; top_builddir=$(pwd)/@top_builddir@; cd #{File::dirname(EXT_CONF)}; ruby #{File::basename(EXT_CONF)} --with-_guestfs-include=$top_srcdir/src --with-_guestfs-lib=$top_builddir/src/.libs"
42 $stderr.puts "Failed to run extconf"
46 file GUESTFS_MODULE => [ MAKEFILE, GUESTFS_SRC ] do |t|
47 Dir::chdir(File::dirname(EXT_CONF)) do
49 $stderr.puts "make failed"
54 desc "Build the native library"
55 task :build => GUESTFS_MODULE
57 Rake::TestTask.new(:test) do |t|
58 t.test_files = FileList['tests/tc_*.rb']
59 t.libs = [ 'lib', 'ext/guestfs' ]
63 Rake::RDocTask.new do |rd|
64 rd.main = "README.rdoc"
65 rd.rdoc_dir = "doc/site/api"
66 rd.rdoc_files.include("README.rdoc", "lib/**/*.rb", "ext/**/*.[ch]")
72 "Rakefile", "COPYING", "README", "NEWS", "README.rdoc",
74 "ext/**/*.[ch]", "ext/**/MANIFEST", "ext/**/extconf.rb",
79 DIST_FILES = FileList[
80 "pkg/*.src.rpm", "pkg/*.gem", "pkg/*.zip", "pkg/*.tgz"
83 SPEC = Gem::Specification.new do |s|
85 s.version = PKG_VERSION
86 s.email = "rjones@redhat.com"
87 s.homepage = "http://libguestfs.org/"
88 s.summary = "Ruby bindings for libguestfs"
90 s.autorequire = "guestfs"
91 s.required_ruby_version = '>= 1.8.1'
92 s.extensions = "ext/guestfs/extconf.rb"
94 Ruby bindings for libguestfs.
98 Rake::GemPackageTask.new(SPEC) do |pkg|