homebrew-core/Formula/curaengine.rb

19 lines
440 B
Ruby
Raw Normal View History

2014-05-20 05:48:50 +00:00
require "formula"
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"
def install
ENV.deparallelize
system "make"
2014-05-29 17:41:55 +00:00
if build.head?
bin.install "build/CuraEngine"
else
bin.install "CuraEngine"
end
end
end