Sha256: 21c3d6a3e900170f1b46a2fd0031c9ebc58bc8b70963757fd9d616f903224242

Contents?: true

Size: 1.5 KB

Versions: 7

Compression:

Stored size: 1.5 KB

Contents

# -*- encoding: UTF-8 -*-
# This file gets eval'ed by the global options parser in lib/csd/options_parser

opts.on("--this-user","Compile MiniSIP only for the current user (enforces the --no-temp option)") do |value|
  self.this_user = value
end

opts.on("--no-apt-get","Don't run any apt-get commands") do |value|
  self.apt_get = value
end

opts.on("--force-ffmpeg","Do not remove FFmpeg before compiling MiniSIP and compile FFmpeg before MiniSIP") do |value|
  self.ffmpeg_first = value
end

opts.on("--github-tar","Instead of fetching git repositories from Github, use tarball downloads") do |value|
  self.github_tar = value
end

opts.on('--branch BRANCH', 'Choose another branch than `masterĀ“ when downloading the source code') do |value|
  self.branch = value
end

opts.headline 'MINISIP LIBRARY OPTIONS'.green.bold

opts.on("--no-bootstrap","Don't run the bootstrap command on any MiniSIP library") do |value|
  self.bootstrap = value
end

opts.on("--no-configure","Don't run the configure command on any MiniSIP library") do |value|
  self.configure = value
end

opts.on("--no-make","Don't run the make command on any MiniSIP library") do |value|
  self.make = value
end

opts.on("--no-make-install","Don't run the make install command on any MiniSIP library") do |value|
  self.make_install = value
end

opts.on("--only libmutil,libmsip,etc.", Array, "Process only these libraries") do |list|
  self.only = list
end

opts.on("--enable-debug","Enable MiniSIP-internal debugging") do |value|
  self.enable_debug = value
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
csd-0.3.3 lib/csd/application/minisip/options/install.rb
csd-0.3.2 lib/csd/application/minisip/options/install.rb
csd-0.3.1 lib/csd/application/minisip/options/install.rb
csd-0.3.0 lib/csd/application/minisip/options/install.rb
csd-0.2.2 lib/csd/application/minisip/options/install.rb
csd-0.2.1 lib/csd/application/minisip/options/install.rb
csd-0.2.0 lib/csd/application/minisip/options/install.rb