require 'fileutils' module Cany class Recipe # @api public # This method should be call in subclasses to register new recipe instances. Cany ignores any # recipe subclasses which does not call register_as. If multiple recipes register on the same # name the later one will overwrite the earlier one and therefore used by Cany. # @param [Symbol] name A ruby symbol as name for the recipe. It should be short and recognizable def self.register_as(name) @@recipes ||= {} @@recipes[name] = self end # @api public # Looks for the class registered for the given name # @param [Symbol] name the name the class is search for # @return [Cany::Recipe, nil] Returns the found class or nil if no class is registered on this # name def self.from_name(name) @@recipes[name] end # Creates a new instance of this recipe # @param [Cany::Specification] spec Specification object # @param [Cany::Recipe, nil] inner Inner recipes should should be call between the pre and post # actions of this class. Nil means most inner recipes. def initialize(spec, inner) @spec = spec @inner = inner end attr_reader :spec, :inner # API to use inside the recipe ############################## # @api public # Run a command inside the build directory. In most cases it is not needed to call this method # directly. Look at the other helper methods. # # The method expects as arguments the program name and additional parameters for the program. # The arguments can be group with arguments, but must not: # @example # exec 'echo', %w(a b) # exec ['echo', 'a', 'b'] # exec 'echo', 'a', 'b' def exec(*args) puts " #{args.flatten.join(' ')}" system *args.flatten end # @api public # Run a ruby task (like gem, bundler, rake ...) # # The method expects as arguments the program name and additional parameters for the program. # See exec for more examples def ruby_bin(*args) exec 'ruby', '-S', *args end # @api public # Install files or directory from the build directory # @param [String] source The relative file name to a filename or directory inside the build # directory that should be installed/copied into the destination package # @param [String] destination The diretory name into that the file or directory should be # installed def install(src, dest_dir) exec 'dh_install', src, dest_dir end # @api public # Install a file. The content is passed as argument. This method is designed to be used by # recipes to create files dynamically. # @param [String] filename The absolute file name for the file inside the package. # @param [String] content The file content def install_content(filename, content) FileUtils.mkdir_p File.dirname File.join('debian', spec.name, filename) File.open File.join('debian', spec.name, filename), 'w' do |f| f.write content end end # @api public # Installs/creates an empty directory # @param [String] path The path name def install_dir(path) exec 'dh_installdirs', path end # @api public # Create a file named destination as a link to a file named source def install_link(source, destination) exec 'dh_link', source, destination end # @api public # Ensure that the given files or directories are no present. Directories are removed # recursively. def rmtree(*args) args.flatten.each do |path| ::FileUtils.remove_entry path if File.exists? path end end # default implementation: ######################### # @api public # clean the build directory from all temporary and created files def clean inner.clean end # @api public # build the program (means ./configure and make) def build inner.build end # @api public # create binary (package) version of this file (means make install) def binary inner.binary end end end