From 289106b7cebb583cbf57d0ca825ae7e89e6d4bc7 Mon Sep 17 00:00:00 2001 From: Alessio Bogon Date: Fri, 12 Feb 2016 22:46:58 +0100 Subject: [PATCH] htop: add optional ncurses dependency `htop` supports mouse scrolling, but needs to be built with `ncurses` >= 6 Closes Homebrew/homebrew#49126. Signed-off-by: Dominyk Tiller --- Formula/htop.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Formula/htop.rb b/Formula/htop.rb index 6aad66b8170..fd67980d67a 100644 --- a/Formula/htop.rb +++ b/Formula/htop.rb @@ -10,9 +10,12 @@ class Htop < Formula sha256 "9518a50b960bb36910c0df40a68f91261578dad53fbaff34f694b93150abf2be" => :mavericks end + option "with-ncurses", "Build using homebrew ncurses (enables mouse scroll)" + depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build + depends_on "homebrew/dupes/ncurses" => :optional conflicts_with "htop-osx", :because => "both install an `htop` binary"