summaryrefslogtreecommitdiff
path: root/Formula/uhubctl.rb
blob: 440b1cd536b72715b63a7008de9930fbdac36870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Uhubctl < Formula
  desc "control USB hubs powering per-port"
  homepage "https://github.com/mvp/uhubctl"
  head "https://github.com/mvp/uhubctl.git"

  depends_on "libusb"

  def install
    system "make"
    bin.install "uhubctl"
  end

  test do
    system "#{bin}/uhubctl", "-v"
  end
end