blob: 0d1b0cbeb4103fb6c164fa5f6e27284cc9446afa (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | require 'formula'
class Libfreenect < Formula
  homepage 'http://openkinect.org'
  url 'https://github.com/OpenKinect/libfreenect/archive/v0.2.0.tar.gz'
  sha1 'cc6ec1d48411439769d51a645f684a8aeedcf1f1'
  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'] = Hardware::CPU.universal_archs.as_cmake_arch_flags
    end
    mkdir "build" do
      system "cmake", "..", *std_cmake_args
      system "make install"
    end
  end
end
 |