Sha256: fe89be0d51884d97a72bef6e0a7634d5a902b0697b5038da46596689454b81ef

Contents?: true

Size: 959 Bytes

Versions: 2

Compression:

Stored size: 959 Bytes

Contents

# -*- ruby -*-

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

package_task = GNOME2::Rake::PackageTask.new do |package|
  package.summary = "Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x."
  package.description = "Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x."
  package.dependency.gem.runtime = ["glib2"]
  package.windows.packages = []
  package.windows.dependencies = []
  package.windows.build_dependencies = [
    "glib2",
    "gobject-introspection",
  ]
  package.external_packages = [
    {
      :name => "gdk-pixbuf",
      :download_site => :gnome,
      :label => "gdk-pixbuf",
      :version => "2.30.2",
      :compression_method => "xz",
      :windows => {
        :configure_args => [
          "--with-included-loaders",
          "--enable-introspection",
        ],
        :build_concurrently => false,
        :built_file => "bin/libgdk_pixbuf-2.0-0.dll",
      },
    }
  ]
end
package_task.define

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gdk_pixbuf2-2.1.0-x86-mingw32 Rakefile
gdk_pixbuf2-2.1.0 Rakefile