diff --git a/Library/Homebrew/pathname+yeast.rb b/Library/Homebrew/pathname+yeast.rb index cf068d0fa2..5bed99231b 100644 --- a/Library/Homebrew/pathname+yeast.rb +++ b/Library/Homebrew/pathname+yeast.rb @@ -140,7 +140,11 @@ class Pathname # eg. foobar4.5.1 /((\d+\.)*\d+)$/.match stem return $1 if $1 - + + # eg foobar-4.5.0-bin + /-((\d+\.)*\d+-bin)$/.match stem + return $1 if $1 + # eg. otp_src_R13B (this is erlang's style) # eg. astyle_1.23_macosx.tar.gz stem.scan /_([^_]+)/ do |match|