Sha256: c93e08fdbb7d57cb79425c1d2a909b5ce5abb155b33fecc7f9ecd5194bc9b01c
Contents?: true
Size: 1.39 KB
Versions: 6
Compression:
Stored size: 1.39 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 |lib| 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
Version data entries
6 entries across 6 versions & 1 rubygems