diff options
Diffstat (limited to 'Library/Formula/libuvc.rb')
| -rw-r--r-- | Library/Formula/libuvc.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libuvc.rb b/Library/Formula/libuvc.rb new file mode 100644 index 000000000..65665e17d --- /dev/null +++ b/Library/Formula/libuvc.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Libuvc < Formula + homepage 'https://github.com/ktossell/libuvc' + url 'https://github.com/ktossell/libuvc/archive/v0.0.2.tar.gz' + sha1 'e0d57007715eaf36c5ebeb8d348488984c681041' + + depends_on 'libusb' + depends_on 'cmake' => :build + + def install + system "cmake", ".", *std_cmake_args + system "make" + system "make", "install" + end +end |
