blob: 8592952d2056d403f1e229f7e6c96952f6ab2bf1 (
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
26
27
28
29
30
31
32
33
34
35
|
require "formula"
class Libfreenect < Formula
homepage "http://openkinect.org"
url "https://github.com/OpenKinect/libfreenect/archive/v0.4.3.tar.gz"
sha1 "aa2784b78d2ba402cecd68eaec4a0cc6f72dc5cc"
head "https://github.com/OpenKinect/libfreenect.git"
bottle do
cellar :any
sha1 "c3688a5a4ba70b4402ab55b3b7a3edab2b423cd7" => :mavericks
sha1 "3a58faa6c9aa9ba21b70cb83f5333a1b2e0a1139" => :mountain_lion
sha1 "e191312fdb3a55c4c04cd7ae622d9b1d13558a79" => :lion
end
option :universal
depends_on "cmake" => :build
depends_on "libusb"
def install
args = std_cmake_args
if build.universal?
ENV.universal_binary
args << "-DCMAKE_OSX_ARCHITECTURES=#{Hardware::CPU.universal_archs.as_cmake_arch_flags}"
end
mkdir "build" do
system "cmake", "..", *args
system "make install"
end
end
end
|