blob: a8c2f620e24efb9cf92175a8db0a7141f03e0b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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'
depends_on 'cmake' => :build
depends_on 'libusb'
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make", "install"
end
end
|