Sha256: 18661f551a48905cc94debacdd7aaa9be34286c6be3eb615688df0598c00e265
Contents?: true
Size: 1.64 KB
Versions: 5
Compression:
Stored size: 1.64 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("--vendor","Use the latest, untested version from the vendor's repository (SVN) instead of Github") do |value| self.vendor = 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
5 entries across 5 versions & 1 rubygems