class Lolcode < Formula homepage "http://lolcode.org" head "https://github.com/justinmeza/lolcode.git" bottle do cellar :any sha1 "3adaf4e185615a450be5102252c54ea881fe6195" => :yosemite sha1 "ac8426fbea700357f25e98911fdd8d748769ae1e" => :mavericks sha1 "28d703003ff61e29c2f6c9f9bee09e758aa1a00a" => :mountain_lion end # note: 0.10.* releases are stable versions, 0.11.* are dev ones url "https://github.com/justinmeza/lci/archive/v0.11.2.tar.gz" sha1 "6c5b996bb4defb77542a8fb525df9991b21139f9" depends_on "cmake" => :build conflicts_with "lci", :because => "both install `lci` binaries" def install system "cmake", "." system "make" # Don't use `make install` for this one file bin.install "lci" end test do path = testpath/"test.lol" path.write <<-EOS.undent HAI 1.2 CAN HAS STDIO? VISIBLE "HAI WORLD" KTHXBYE EOS assert_equal "HAI WORLD\n", shell_output("#{bin}/lci #{path}") end end r-1.7.0 :beer: The missing package manager for OS X.
aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cdrtools.rb
blob: d7a5e1333163d8b1e6b38f2e6ec0f23125eb2558 (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