2014-03-15 12:55:14 -05:00
|
|
|
require "formula"
|
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2010-09-11 20:22:54 +01:00
|
|
|
def diy
|
2014-03-15 12:55:14 -05:00
|
|
|
%w[name version].each do |opt|
|
|
|
|
if ARGV.include? "--set-#{opt}"
|
|
|
|
opoo "--set-#{opt} is deprecated, please use --#{opt}=<#{opt}> instead"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
path = Pathname.getwd
|
|
|
|
|
2014-03-15 12:55:14 -05:00
|
|
|
version = ARGV.value "version"
|
|
|
|
version ||= if ARGV.include? "--set-version"
|
2010-09-11 20:22:54 +01:00
|
|
|
ARGV.next
|
|
|
|
elsif path.version.to_s.empty?
|
2014-03-15 12:55:14 -05:00
|
|
|
raise "Couldn't determine version, set it with --version=<version>"
|
2010-09-11 20:22:54 +01:00
|
|
|
else
|
|
|
|
path.version
|
|
|
|
end
|
|
|
|
|
2014-03-15 12:55:14 -05:00
|
|
|
name = ARGV.value "name"
|
2014-03-15 12:55:14 -05:00
|
|
|
name ||= ARGV.next if ARGV.include? "--set-name"
|
|
|
|
name ||= detected_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}"
|
|
|
|
else
|
|
|
|
raise "Couldn't determine build system"
|
|
|
|
end
|
|
|
|
end
|
2014-03-15 12:55:14 -05:00
|
|
|
|
|
|
|
def detected_name(path, version)
|
|
|
|
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
|
|
|
|
|
|
|
odie <<-EOS.undent if detected_name != canonical_name
|
|
|
|
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}
|
|
|
|
EOS
|
|
|
|
|
|
|
|
detected_name
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|