diff options
| author | Martin Williams | 2014-02-06 23:58:31 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2014-02-06 18:42:45 -0800 |
| commit | efeed55f1312fa684b53ad56e9ac60985315aeb5 (patch) | |
| tree | 6210768ab969a900c7efc24d23f3bd4ac8de7f82 /Library | |
| parent | 0628ae93b12a3f19af719551e899a810e91e15d1 (diff) | |
| download | homebrew-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')
| -rw-r--r-- | Library/Formula/eye-d3.rb | 4 |
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 |
