Class: GNOME2::Rake::ExternalPackage::WindowsConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
lib/gnome2/rake/external-package.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(properties) ⇒ WindowsConfiguration

Returns a new instance of WindowsConfiguration.



115
116
117
118
119
120
# File 'lib/gnome2/rake/external-package.rb', line 115

def initialize(properties)
  super()
  properties.each do |key, value|
    send("#{key}=", value)
  end
end

Instance Attribute Details

#configure_argsObject

Returns the value of attribute configure_args

Returns:

  • (Object)

    the current value of configure_args



106
107
108
# File 'lib/gnome2/rake/external-package.rb', line 106

def configure_args
  @configure_args
end

#include_pathsObject

Returns the value of attribute include_paths

Returns:

  • (Object)

    the current value of include_paths



106
107
108
# File 'lib/gnome2/rake/external-package.rb', line 106

def include_paths
  @include_paths
end

#library_pathsObject

Returns the value of attribute library_paths

Returns:

  • (Object)

    the current value of library_paths



106
107
108
# File 'lib/gnome2/rake/external-package.rb', line 106

def library_paths
  @library_paths
end

#patchesObject

Returns the value of attribute patches

Returns:

  • (Object)

    the current value of patches



106
107
108
# File 'lib/gnome2/rake/external-package.rb', line 106

def patches
  @patches
end

Instance Method Details

#build?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'lib/gnome2/rake/external-package.rb', line 122

def build?
  build.nil? ? true : build
end

#build_concurrently?Boolean

Returns:

  • (Boolean)


150
151
152
# File 'lib/gnome2/rake/external-package.rb', line 150

def build_concurrently?
  build_concurrently.nil? ? true : build_concurrently
end

#need_autogen?Boolean

Returns:

  • (Boolean)


142
143
144
# File 'lib/gnome2/rake/external-package.rb', line 142

def need_autogen?
  need_autogen.nil? ? false : need_autogen
end

#need_autoreconf?Boolean

Returns:

  • (Boolean)


146
147
148
# File 'lib/gnome2/rake/external-package.rb', line 146

def need_autoreconf?
  need_autoreconf.nil? ? false : need_autoreconf
end

#use_cc_environment_variable?Boolean

Returns:

  • (Boolean)


154
155
156
# File 'lib/gnome2/rake/external-package.rb', line 154

def use_cc_environment_variable?
  use_cc_environment_variable.nil? ? true : use_cc_environment_variable
end