spacepaste

  1.  
  2. # Description: Fast and robust engine for processing 3D models into 3D printing instruction for Ultimaker and other GCode based 3D printers.
  3. # URL: https://github.com/Ultimaker/CuraEngine
  4. # Maintainer: Brian Madonna, Bmadonnaster at gmail dot com
  5. # Depends on: arcus cmake
  6. name=curaengine
  7. version=3.4.1
  8. release=1
  9. source=(https://github.com/Ultimaker/CuraEngine/archive/curaengine-3.3.0.tar.gz)
  10. build() {
  11. cd $SRC/CuraEngine-${version}
  12. mkdir -p build
  13. cd build
  14. cmake .. \
  15. -DCMAKE_INSTALL_PREFIX=/usr \
  16. -DCMAKE_BUILD_TYPE=Release
  17. make
  18. make DESTDIR="${PKG}" install
  19. }
  20.