2014-05-20 05:48:50 +00:00
|
|
|
require "formula"
|
2013-10-06 04:21:19 +00:00
|
|
|
|
|
|
|
class Curaengine < Formula
|
2014-05-20 05:48:50 +00:00
|
|
|
homepage "https://github.com/Ultimaker/CuraEngine"
|
|
|
|
head "https://github.com/Ultimaker/CuraEngine.git"
|
|
|
|
url "https://github.com/Ultimaker/CuraEngine/archive/14.03.tar.gz"
|
|
|
|
sha1 "d782c90d6e66580cc7e4b43a013da399e4623259"
|
2013-10-06 04:21:19 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.deparallelize
|
|
|
|
system "make"
|
2014-05-28 22:49:58 +00:00
|
|
|
# Newer version compile to build, older versions compile to bin
|
|
|
|
bin.install(build.head? ? "build/CuraEngine" : "CuraEngine")
|
2013-10-06 04:21:19 +00:00
|
|
|
end
|
|
|
|
end
|