Class: GNOME2::Rake::ExternalPackage::NativeConfiguration

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) ⇒ NativeConfiguration

Returns a new instance of NativeConfiguration.



365
366
367
368
369
370
# File 'lib/gnome2/rake/external-package.rb', line 365

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

Instance Attribute Details

#built_fileObject

Returns the value of attribute built_file

Returns:

  • (Object)

    the current value of built_file



358
359
360
# File 'lib/gnome2/rake/external-package.rb', line 358

def built_file
  @built_file
end

#configure_argsObject

Returns the value of attribute configure_args

Returns:

  • (Object)

    the current value of configure_args



358
359
360
# File 'lib/gnome2/rake/external-package.rb', line 358

def configure_args
  @configure_args
end

#patchesObject

Returns the value of attribute patches

Returns:

  • (Object)

    the current value of patches



358
359
360
# File 'lib/gnome2/rake/external-package.rb', line 358

def patches
  @patches
end

Instance Method Details

#build?Boolean

Returns:

  • (Boolean)


372
373
374
# File 'lib/gnome2/rake/external-package.rb', line 372

def build?
  build.nil? ? false : build
end

#build_concurrently?Boolean

Returns:

  • (Boolean)


396
397
398
# File 'lib/gnome2/rake/external-package.rb', line 396

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

#need_autogen?Boolean

Returns:

  • (Boolean)


388
389
390
# File 'lib/gnome2/rake/external-package.rb', line 388

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

#need_autoreconf?Boolean

Returns:

  • (Boolean)


392
393
394
# File 'lib/gnome2/rake/external-package.rb', line 392

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