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
|
|
|
|
path = Pathname.getwd
|
|
|
|
|
2014-07-17 12:24:03 -05:00
|
|
|
version = ARGV.value("version") || detect_version(path)
|
|
|
|
name = ARGV.value("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}"
|
|
|
|
else
|
|
|
|
raise "Couldn't determine build system"
|
|
|
|
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
|
|
|
|
|
|
|
|
if version.empty?
|
|
|
|
raise "Couldn't determine version, set it with --version=<version>"
|
|
|
|
else
|
|
|
|
version
|
|
|
|
end
|
|
|
|
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
|
|
|
|
|
|
|
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
|