2014-03-15 12:55:14 -05:00
|
|
|
require "formula"
|
2019-04-17 18:25:08 +09:00
|
|
|
require "cli/parser"
|
2014-03-15 12:55:14 -05:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2018-10-27 22:59:08 +05:30
|
|
|
def diy_args
|
|
|
|
Homebrew::CLI::Parser.new do
|
|
|
|
usage_banner <<~EOS
|
|
|
|
`diy` [<options>]
|
|
|
|
|
|
|
|
Automatically determine the installation prefix for non-Homebrew software.
|
|
|
|
Using the output from this command, you can install your own software into
|
|
|
|
the Cellar and then link it into Homebrew's prefix with `brew link`.
|
|
|
|
EOS
|
|
|
|
flag "--name=",
|
|
|
|
description: "Explicitly set the provided <name> of the package being installed."
|
|
|
|
flag "--version=",
|
|
|
|
description: "Explicitly set the provided <version> of the package being installed."
|
|
|
|
switch :verbose
|
|
|
|
switch :debug
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
def diy
|
2018-10-27 22:59:08 +05:30
|
|
|
diy_args.parse
|
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
path = Pathname.getwd
|
|
|
|
|
2018-10-27 22:59:08 +05:30
|
|
|
version = args.version || detect_version(path)
|
|
|
|
name = args.name || detect_name(path, version)
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2012-07-10 16:01:02 -05:00
|
|
|
prefix = HOMEBREW_CELLAR/name/version
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2014-03-15 12:55:14 -05:00
|
|
|
if File.file? "CMakeLists.txt"
|
2010-09-11 20:22:54 +01:00
|
|
|
puts "-DCMAKE_INSTALL_PREFIX=#{prefix}"
|
2014-07-17 12:14:16 -05:00
|
|
|
elsif File.file? "configure"
|
2010-09-11 20:22:54 +01:00
|
|
|
puts "--prefix=#{prefix}"
|
2018-10-27 16:22:55 +02:00
|
|
|
elsif File.file? "meson.build"
|
|
|
|
puts "-Dprefix=#{prefix}"
|
2010-09-11 20:22:54 +01:00
|
|
|
else
|
2018-10-27 16:22:55 +02:00
|
|
|
raise "Couldn't determine build system. You can manually put files into #{prefix}"
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
end
|
2014-03-15 12:55:14 -05:00
|
|
|
|
2014-07-17 12:24:03 -05:00
|
|
|
def detect_version(path)
|
|
|
|
version = path.version.to_s
|
|
|
|
|
2016-09-22 20:12:28 +02:00
|
|
|
raise "Couldn't determine version, set it with --version=<version>" if version.empty?
|
|
|
|
|
|
|
|
version
|
2014-07-17 12:24:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def detect_name(path, version)
|
2014-03-15 12:55:14 -05:00
|
|
|
basename = path.basename.to_s
|
|
|
|
detected_name = basename[/(.*?)-?#{Regexp.escape(version)}/, 1] || basename
|
2014-06-22 15:00:15 -05:00
|
|
|
canonical_name = Formulary.canonical_name(detected_name)
|
2014-03-15 12:55:14 -05:00
|
|
|
|
2017-10-15 02:28:32 +02:00
|
|
|
odie <<~EOS if detected_name != canonical_name
|
2014-03-15 12:55:14 -05:00
|
|
|
The detected name #{detected_name.inspect} exists in Homebrew as an alias
|
|
|
|
of #{canonical_name.inspect}. Consider using the canonical name instead:
|
|
|
|
brew diy --name=#{canonical_name}
|
|
|
|
|
|
|
|
To continue using the detected name, pass it explicitly:
|
|
|
|
brew diy --name=#{detected_name}
|
2018-06-06 23:34:19 -04:00
|
|
|
EOS
|
2014-03-15 12:55:14 -05:00
|
|
|
|
|
|
|
detected_name
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|