aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartin Williams2014-02-06 23:58:31 +0000
committerAdam Vandenberg2014-02-06 18:42:45 -0800
commitefeed55f1312fa684b53ad56e9ac60985315aeb5 (patch)
tree6210768ab969a900c7efc24d23f3bd4ac8de7f82 /Library/Formula
parent0628ae93b12a3f19af719551e899a810e91e15d1 (diff)
downloadhomebrew-efeed55f1312fa684b53ad56e9ac60985315aeb5.tar.bz2
eyeD3: 0.6.18 - Install tool with name 'eyeD3', not 'eyeD3_script'
This package provides a command line tool named 'eyeD3'. However the formula installs it under the name 'eyeD3_script'. This breaks scripts/workflows that expect to find the tool by its official name. Also correct a typo. Remark: 'bin.install_symlink' needs a hash argument where source and target names differ. But the formula separated source & target names with a ','. Looks like an inadvertent slip to me. Closes #26487. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/eye-d3.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/eye-d3.rb b/Library/Formula/eye-d3.rb
index f5d348ce1..ce0ebf4ee 100644
--- a/Library/Formula/eye-d3.rb
+++ b/Library/Formula/eye-d3.rb
@@ -11,12 +11,12 @@ class EyeD3 < Formula
# Manually process this file
inreplace "src/eyeD3/__init__.py.in" do |s|
s.change_make_var! "eyeD3Version", "\"#{version}\""
- s.change_make_var! "eyeD3Maintainer", "\"Pacakaged by Homebrew\""
+ s.change_make_var! "eyeD3Maintainer", "\"Packaged by Homebrew\""
end
mv "src/eyeD3/__init__.py.in", "src/eyeD3/__init__.py"
libexec.install "src/eyeD3"
libexec.install "bin/eyeD3" => "eyeD3_script"
- bin.install_symlink libexec+"eyeD3_script", "eyeD3"
+ bin.install_symlink libexec+"eyeD3_script" => "eyeD3"
end
end