aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorD1plo1d2013-10-06 00:21:19 -0400
committerAdam Vandenberg2013-11-23 15:33:49 -0800
commit29ec9728e8b78cab0669a1c3aa01698fd704e422 (patch)
tree001e886e0103f0c8c82caeff50fd3035548357a6 /Library/Formula
parent10dd803c67774cad0148474ea4e9cf299f719de9 (diff)
downloadhomebrew-29ec9728e8b78cab0669a1c3aa01698fd704e422.tar.bz2
CuraEngine 13.11.2
Closes #23069. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/curaengine.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/curaengine.rb b/Library/Formula/curaengine.rb
new file mode 100644
index 000000000..c1cff0f32
--- /dev/null
+++ b/Library/Formula/curaengine.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Curaengine < Formula
+ homepage 'https://github.com/Ultimaker/CuraEngine'
+ head 'https://github.com/Ultimaker/CuraEngine.git'
+ url 'https://github.com/Ultimaker/CuraEngine/archive/13.11.2.tar.gz'
+ sha1 '1a3e3933153421ac22c368ffca9b7ae192a2fc6a'
+
+ def install
+ ENV.deparallelize
+ system "make"
+ bin.install 'CuraEngine'
+ end
+end