require 'formula' class Libfreenect < Formula homepage 'http://openkinect.org' url 'https://github.com/OpenKinect/libfreenect/archive/v0.4.0.tar.gz' sha1 'bec4c9f8a9e5ba39a874680882903858d52574df' 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 ' href='/fork/homebrew/'>homebrew
:beer: The missing package manager for OS X.
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mitmproxy.rb
blob: f54a730984b96381f421192c937ed781841d6204 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89