aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-14 22:14:35 -0700
committerAdam Vandenberg2013-08-14 22:14:35 -0700
commit06d45845fc10f6857b572d13aad4b7280247ee40 (patch)
treeefd0419d2aa857e04d07098f6f7af81fb4385d3d /Library/Homebrew
parentf9d17ddbd53a7517449aee18439dd1e8eedc9f42 (diff)
downloadhomebrew-06d45845fc10f6857b572d13aad4b7280247ee40.tar.bz2
add ubuntu package search
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/cmd/search.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb
index 651534595..f18f21ca3 100644
--- a/Library/Homebrew/cmd/search.rb
+++ b/Library/Homebrew/cmd/search.rb
@@ -15,6 +15,8 @@ module Homebrew extend self
exec_browser "http://software.opensuse.org/search?q=#{ARGV.next}"
elsif ARGV.include? '--fedora'
exec_browser "https://admin.fedoraproject.org/pkgdb/acls/list/*#{ARGV.next}*"
+ elsif ARGV.include? '--ubuntu'
+ exec_browser "http://packages.ubuntu.com/search?keywords=#{ARGV.next}&searchon=names&suite=all&section=all"
elsif (query = ARGV.first).nil?
puts_columns Formula.names
else