diff options
| author | Clinton R. Nixon | 2009-09-06 00:43:00 -0400 |
|---|---|---|
| committer | Max Howell | 2009-09-14 20:33:46 +0100 |
| commit | 9ec05cf09ec634d86e187a5392b21fb139edeb49 (patch) | |
| tree | e0322ec45139d146f6f11c9fc3b0fe25af935a7b /Library/Homebrew | |
| parent | c13a32382ee5dbd93d1dc67137addd6a57a94c71 (diff) | |
| download | homebrew-9ec05cf09ec634d86e187a5392b21fb139edeb49.tar.bz2 | |
Ant formula
Ant is a Java-based build tool. In theory, it is kind of like Make, without
Make's wrinkles and with the full portability of pure Java code.
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/pathname+yeast.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Homebrew/pathname+yeast.rb b/Library/Homebrew/pathname+yeast.rb index cf068d0fa..5bed99231 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| |
