aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libuvc.rb
blob: def617dc5e88b45adbc096b64133b08afc6b417c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Libuvc < Formula
  homepage 'https://github.com/ktossell/libuvc'
  url 'https://github.com/ktossell/libuvc/archive/v0.0.3.tar.gz'
  sha1 'bd6868772e6e4b9c52431d7731c09df013b6cf43'

  bottle do
    sha1 "36d644135909d262346f434be9b470f7be13c149" => :mavericks
    sha1 "fccfef69b9b81ad405afc3d10916a8984266545d" => :mountain_lion
    sha1 "3f5104157aa2c1ba31a549b3382119b5c2d0327b" => :lion
  end

  depends_on 'cmake' => :build
  depends_on 'libusb'

  def install
    system "cmake", ".", *std_cmake_args
    system "make"
    system "make", "install"
  end
end