From 63dc55bbf00e685890850d4d9e94ecd52524846d Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Tue, 8 Jul 2014 07:07:03 -0700 Subject: cura-engine: add 14.03 Based on original work of Elias Bakken : https://github.com/eliasbakken/meta-replicape/tree/master/recipes-bsp/cura Signed-off-by: Tim Orling --- .../recipes-printing/cura/cura-engine_14.03.bb | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 meta-maker/recipes-printing/cura/cura-engine_14.03.bb diff --git a/meta-maker/recipes-printing/cura/cura-engine_14.03.bb b/meta-maker/recipes-printing/cura/cura-engine_14.03.bb new file mode 100644 index 0000000000..af5dd80268 --- /dev/null +++ b/meta-maker/recipes-printing/cura/cura-engine_14.03.bb @@ -0,0 +1,38 @@ +SUMMARY = "CuraEngine - a C++ application for 3D printing GCode generation" + +DESCRIPTION = "The CuraEngine is a C++ console application for 3D printing \ +GCode generation. It has been made as a better and faster alternative to the \ +old Skeinforge engine.\ +\ +The CuraEngine is pure C++ and uses Clipper from \ +http://www.angusj.com/delphi/clipper.php. There are now external dependenices \ +and Clipper is included in the source code without modifications.\ +\ +This is just a console application for GCode generation. For a full graphical \ +application look at https://github.com/daid/Cura which is the graphical \ +frontend for CuraEngine." + +HOMEPAGE = "http://github.com/Ultimaker/CuraEngine.git/" + +LICENSE = "AGPL-3.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=73f1eb20517c55bf9493b7dd6e480788" + +# tag 14.03 +SRC_URI = "git://github.com/Ultimaker/CuraEngine.git;protocol=https" +SRCREV = "4d0dd255b488d4b6166eb6ad420f2b27e8de8ea2" + +S = "${WORKDIR}/git" + +do_compile(){ + sed -i "s:--static::g" Makefile + make +} + +do_install_append () { + install -d ${D}${bindir} + install -m 0744 ${S}/CuraEngine ${D}${bindir} +} + +FILES_${PN} += " \ + ${bindir}/CuraEngine \ +" -- cgit 1.2.3-korg