[arch-commits] Commit in curaengine/repos (3 files)

Lukas Fleischer lfleischer at archlinux.org
Fri May 29 18:30:01 UTC 2020


    Date: Friday, May 29, 2020 @ 18:30:01
  Author: lfleischer
Revision: 637240

db-move: moved curaengine from [community-staging] to [community-testing] (x86_64)

Added:
  curaengine/repos/community-testing-x86_64/
  curaengine/repos/community-testing-x86_64/PKGBUILD
    (from rev 637239, curaengine/repos/community-staging-x86_64/PKGBUILD)
Deleted:
  curaengine/repos/community-staging-x86_64/

----------+
 PKGBUILD |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)

Copied: curaengine/repos/community-testing-x86_64/PKGBUILD (from rev 637239, curaengine/repos/community-staging-x86_64/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2020-05-29 18:30:01 UTC (rev 637240)
@@ -0,0 +1,42 @@
+# Maintainer: Jelle van der Waa <jelle at archlinux.org>
+# Contributor: Grey Christoforo <first name [at] last name [dot] net>
+
+pkgname=curaengine
+pkgver=4.5.0
+pkgrel=2
+pkgdesc="Engine for processing 3D models into 3D printing instruction for Ultimaker and other GCode based 3D printers."
+url="https://github.com/Ultimaker/CuraEngine"
+arch=('x86_64')
+license=('AGPL')
+depends=('arcus' 'rapidjson' 'polyclipping')
+checkdepends=('cppunit')
+makedepends=('cmake' 'git' 'gmock' 'gtest')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz")
+sha512sums=('481f6b839fe7d4bad14d9820337574d31a928e258ede359c608075f1cc7771e3eb649d5d0cff5f1edbc1e2c1802ee99e1ca2eb36a34799331279cbc0c3294636')
+
+
+build() {
+  cd CuraEngine-${pkgver}
+  mkdir -p build
+  cd build
+    
+   cmake .. \
+     -DCMAKE_INSTALL_PREFIX=/usr \
+     -DBUILD_TESTS=ON \
+     -DUSE_SYSTEM_LIBS=ON \
+     -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+check() {
+  cd CuraEngine-${pkgver}/build
+  make test
+}
+
+package() {
+  cd CuraEngine-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list