class Sprinkle::Installers::BsdPort

The BSD Port installer installs OpenBSD and FreeBSD ports. Before usage, the ports sytem must be installed and ready on the target operating system.

Example Usage

Installing the magic_beans port.

package :magic_beans do
  bsd_port 'magic/magic_beans'
end

Public Instance Methods

bsd_port(port, options ={}, &block) click to toggle source
# File lib/sprinkle/installers/bsd_port.rb, line 19
def bsd_port(port, options ={}, &block)
  install BsdPort.new(self, port, options, &block)
end