Sha256: 5ab8d13b191f4176cde2402c9130c397dd0dcf6da4d533cd70aea451d3b6c766

Contents?: true

Size: 662 Bytes

Versions: 7

Compression:

Stored size: 662 Bytes

Contents

require 'autobuild'

# Remove the need for the Autobuild. prefix in
# front of everything
include Autobuild

# Define a common configuration routine
openrobots_config = lambda { |pkg|
    pkg.import = cvs(openrobots, pkg.name)
    pkg.depends_on :mkdep
}

Autotools.aclocal  = "aclocal-1.9"
Autotools.automake = "automake-1.9"
    
autotools(:mkdep, &openrobots_config)
autotools(:gdhe, &openrobots_config)
autotools(:pocolibs, &openrobots_config)
autotools :genom do |pkg|
    openrobots_config[pkg]
    pkg.autoheader = true     # Force usage of autoheader
    pkg.automake = 'automake' # use the default automake instead
			      # of Autotools.automake
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
autobuild-0.6.5 samples/demo.rb
autobuild-0.6.4 samples/demo.rb
autobuild-0.6.6 samples/demo.rb
autobuild-0.6.3 samples/demo.rb
autobuild-0.6.2 samples/demo.rb
autobuild-1.0 samples/demo.rb
autobuild-0.6.7 samples/demo.rb