Sha256: cf6d82191164baf1fb3bb3e0937c376d2fa76bd9fd0dfb4c82ab77710bc79551
Contents?: true
Size: 1.43 KB
Versions: 2
Compression:
Stored size: 1.43 KB
Contents
# -*- ruby -*- $LOAD_PATH.unshift("./../glib2/lib") require 'gnome2-raketask' package = GNOME2Package.new do |_package| _package.summary = "Ruby/GTK2 is a Ruby binding of GTK+-2.x." _package.description = "Ruby/GTK2 is a Ruby binding of GTK+-2.x." _package.dependency.gem.runtime = ["atk", "pango", "gdk_pixbuf2"] _package.win32.packages = [] _package.win32.dependencies = [] _package.win32.build_dependencies = [ "glib2", "atk", "pango", "gdk_pixbuf2", ] _package.win32.build_packages = [ { :name => "gtk+", :download_site => :gnome, :label => "gtk+", :version => "2.24.14", :configure_args => [], :compression_method => "xz", :need_autoreconf => true, :patches => [ "gtk+-2.24.14-add-missing-exeext.diff", ], }, { :name => "hicolor-icon-theme", :download_base_url => "http://icon-theme.freedesktop.org/releases", :label => "gtk-hi-color-icon-theme", :version => "0.12", :configure_args => [], }, ] _package.win32.support_concurrent_build = false end package.define_tasks namespace :win32 do desc "create default gtkrc" task :gtkrc do gtkrc_path = File.join("vendor", "local", "etc", "gtk-2.0", "gtkrc") mkdir_p(File.dirname(gtkrc_path)) File.open(gtkrc_path, "w") do |gtkrc| gtkrc.puts('gtk-theme-name = "MS-Windows"') end end namespace :builder do task :after => ["win32:gtkrc"] end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
gtk2-1.2.6-x86-mingw32 | Rakefile |
gtk2-1.2.6 | Rakefile |