homebrew-core/Formula/libfreenect.rb

26 lines
573 B
Ruby

require 'formula'
class Libfreenect < Formula
homepage 'http://openkinect.org'
url 'https://github.com/OpenKinect/libfreenect/archive/v0.1.2.tar.gz'
sha1 'a20aada4c84a29f10ef1953c81404d2f256b21e6'
head 'https://github.com/OpenKinect/libfreenect.git'
option :universal
depends_on 'cmake' => :build
depends_on 'libusb'
def install
if build.universal?
ENV.universal_binary
ENV['CMAKE_OSX_ARCHITECTURES'] = "i386;x86_64"
end
mkdir "build" do
system "cmake", "..", *std_cmake_args
system "make install"
end
end
end