# # Copyright (C) 2012-2015 Ruby-GNOME2 Project Team # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

$LOAD_PATH.unshift(“./../glib2/lib”) require “gnome2/rake/package-task”

package_task = GNOME2::Rake::PackageTask.new do |package|

package.summary = "Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection."
package.description = "Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection."
package.dependency.gem.runtime = ["glib2"]
package.dependency.gem.development = [["test-unit", ">= 2"]]
package.windows.packages = []
package.windows.dependencies = []
package.windows.build_dependencies = ["glib2"]
package.external_packages = [
  {
    :name => "glib",
    :download_site => :gnome,
    :label => "GLib",
    :version => "2.56.0",
    :compression_method => "xz",
    :windows => {
      :build => false,
    },
    :native => {
      :build => true,
      :need_autoreconf => true,
      :built_file => "lib/libglib-2.0.so",
    },
  },
  {
    :name => "gobject-introspection",
    :download_site => :gnome,
    :label => "gobject-introspection",
    :version => "1.56.0",
    :compression_method => "xz",
    :windows => {
      :configure_args => [
        "--with-g-ir-scanner=#{package.native.absolute_binary_dir}/bin/g-ir-scanner",
        "--disable-tests",
      ],
      :patches => [
        "support-external-g-ir-scanner.diff",
      ],
      :need_autoreconf => true,
      :build_concurrently => false,
      :built_file => "bin/libgirepository-1.0-1.dll",
    },
    :native => {
      :build => true,
      :patches => [
      ],
      :built_file => "bin/g-ir-scanner",
    }
  },
]

end package_task.define

namespace :native do

namespace :"gobject-introspection" do
  patched_paths = []

  g_ir_scanner_dir = package_task.native.absolute_binary_dir
  g_ir_scanner_dir += "lib/gobject-introspection/giscanner"
  g_ir_scanner_patched_path = g_ir_scanner_dir + "patched"
  patched_paths << g_ir_scanner_patched_path
  file g_ir_scanner_patched_path.to_s do
    Dir.chdir(g_ir_scanner_dir.to_s) do
      patch = "#{package_task.package.patches_dir}/cross-g-ir-scanner.diff"
      sh("patch -p2 < #{patch}")
      rm_f(Dir.glob("*.{pyc,pyo}"))
    end
    touch(g_ir_scanner_patched_path)
  end

  desc "Make g-ir-scanner workable for Windows on non Windows"
  task :cross => patched_paths
end

namespace :builder do
  task :after => "native:gobject-introspection:cross"
end

end