blob: f73f988bd612db5873c39cc91663be890fc59bb2 (
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
|
class Curaengine < Formula
homepage "https://github.com/Ultimaker/CuraEngine"
url "https://github.com/Ultimaker/CuraEngine/archive/15.04.tar.gz"
sha256 "d577e409b3e9554e7d2b886227dbbac6c9525efe34df4fc7d62e9474a2d7f965"
head "https://github.com/Ultimaker/CuraEngine.git"
bottle do
cellar :any
sha256 "eef2771a72371fd9d541d83cf5ba92c88f1ab614017e03860f59bfacaa5eb948" => :yosemite
sha256 "4cfea42552a3acb1ec939d882ef38bfd766a15f0f462f595e6da5f6d851a0437" => :mavericks
sha256 "6ada916641459b6d059985c82d61a197a92bf724e7d5770a0bbcf60b6d6361a3" => :mountain_lion
end
def install
system "make", "VERSION=#{version}"
bin.install "build/CuraEngine"
end
test do
(testpath/"t.stl").write <<-EOF.undent
solid t
facet normal 0 -1 0
outer loop
vertex 0.83404 0 0.694596
vertex 0.36904 0 1.5
vertex 1.78814e-006 0 0.75
endloop
endfacet
endsolid Star
EOF
system "#{bin}/CuraEngine", "#{testpath}/t.stl"
end
end
|