PKGBUILDs/extra/curaengine/PKGBUILD
2023-05-29 21:48:20 +00:00

49 lines
1.3 KiB
Bash

# Maintainer: Jelle van der Waa <jelle@archlinux.org>
# Contributor: Grey Christoforo <first name [at] last name [dot] net>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - -DBUILD_TESTS=OFF
pkgname=curaengine
pkgver=4.13.1
pkgrel=3
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' 'polyclipping')
checkdepends=('cppunit')
makedepends=('cmake' 'git' 'gtest' 'rapidjson')
options=('debug')
source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/${pkgname}/archive/${pkgver}.tar.gz")
sha512sums=('224379a40e26ae0026a3849d582353e49edf99520401e1fef56c9504638c68c62cfe394dab0eb40e4a447bfe0bfa506a880512e84fd6057a839b6384087c46d0')
build() {
cd CuraEngine-${pkgver}
mkdir -p build
cd build
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_TESTS=OFF \
-DUSE_SYSTEM_LIBS=ON \
-DCMAKE_BUILD_TYPE='None'
make
}
check() {
cd CuraEngine-${pkgver}/build
# This test fails in when instance->readMeshGroupMessage(mesh_message) is
# called in the buildchroot but not outside
ARGS="-E ArcusCommunicationPrivateTest" make test
}
package() {
cd CuraEngine-${pkgver}/build
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et: