2020-06-10 21:48:10 +00:00
|
|
|
# Maintainer: Lukas1818 aur at lukas1818 dot de
|
2020-04-03 00:16:54 +00:00
|
|
|
|
2021-04-12 16:56:00 +00:00
|
|
|
pkgname=superslicer-prerelease
|
2021-06-15 15:08:18 +00:00
|
|
|
pkgver=2.3.56.5
|
2020-05-10 17:38:47 +00:00
|
|
|
_pkgtag=$pkgver
|
2021-06-11 14:49:10 +00:00
|
|
|
pkgrel=1
|
2021-04-12 16:56:00 +00:00
|
|
|
epoch=1
|
2020-04-03 00:16:54 +00:00
|
|
|
pkgdesc="G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)"
|
2021-03-31 11:36:41 +00:00
|
|
|
arch=("$CARCH")
|
2020-06-10 21:48:10 +00:00
|
|
|
url="https://github.com/supermerill/SuperSlicer"
|
2020-04-03 00:16:54 +00:00
|
|
|
license=('AGPL3')
|
2020-12-31 14:55:52 +00:00
|
|
|
depends=('cgal' 'glew' 'nlopt' 'openvdb' 'wxgtk3-dev-opt' 'boost>=1.73.0' 'qhull>=2020.2-4')
|
2020-06-11 15:01:40 +00:00
|
|
|
replaces=('slic3r++')
|
2020-10-25 11:51:49 +00:00
|
|
|
makedepends=('cereal' 'cmake' 'eigen' 'libigl' 'openvdb' 'wxgtk2-dev-opt') # cmake doesn't detect wx if not both gtk2 and gtk3 are installed
|
2021-04-12 16:56:00 +00:00
|
|
|
provides=("superslicer=$epoch:$pkgver")
|
|
|
|
conflicts=('superslicer' 'superslicer-git')
|
2020-06-10 21:48:10 +00:00
|
|
|
source=("https://github.com/supermerill//SuperSlicer/archive/$_pkgtag.tar.gz"
|
2020-10-11 18:13:41 +00:00
|
|
|
"start-superslicer.sh"
|
2021-05-01 16:14:24 +00:00
|
|
|
"0001-wxgtk3-is-broken-on-wayland.patch"
|
|
|
|
"https://raw.githubusercontent.com/archlinux/svntogit-community/1dea61c0b581ff5001d073689f68b0323740be93/trunk/prusa-slicer-openexr3.patch")
|
2021-06-15 15:08:18 +00:00
|
|
|
sha512sums=('23474a7b4c06b02f4a973001b6059b97d3ff2b6cbdf3daf57eb799384a94d32b55e0fc7731cb3cab83f58ec97841b338b8a035ab0d588ea7fe5fd37e347e9ff3'
|
2021-06-11 14:49:10 +00:00
|
|
|
'6a117a0ae2e82b2c0ad9e8f746fddeceb1b0efe04962468e266d7ee9d38218311fff5a82c9880b82a23b2499461ba6f8f3cabef064fc8f9b906b0e2e35bcd846'
|
2021-05-01 16:14:24 +00:00
|
|
|
'acf35ebe467e9fb30f1b77d15348f1a7b82dcf45a5b829e375e972b5d6b49968603b3fa090c4d1f56e8b5148e2b820e79afa269da60ace70de1ceadcf6e820c5'
|
|
|
|
'c33c2414746bc9d7dceb5af59ecb4aed2189211fc3c8b144d712a39d3677ba4d366eb9b4dd05fbc3811954d69cd1273d714dc4536489fe153ac1aee2919e5c98')
|
2020-04-03 00:16:54 +00:00
|
|
|
|
|
|
|
prepare()
|
|
|
|
{
|
2020-06-10 21:48:10 +00:00
|
|
|
cd "$srcdir/SuperSlicer-$_pkgtag"
|
|
|
|
|
2020-04-03 00:16:54 +00:00
|
|
|
# disabling tests is not enough, we need to remove them explicitly
|
|
|
|
sed -i 's,add_subdirectory(test),,g' src/CMakeLists.txt
|
2020-06-10 21:48:10 +00:00
|
|
|
|
2020-04-03 00:16:54 +00:00
|
|
|
# apply patches
|
2020-04-21 17:15:00 +00:00
|
|
|
patch --forward --strip=1 --input="$srcdir/0001-wxgtk3-is-broken-on-wayland.patch"
|
2021-05-27 10:08:27 +00:00
|
|
|
patch -p1 < "$srcdir/prusa-slicer-openexr3.patch" # Fix build with openEXR 3
|
2020-04-03 00:16:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build()
|
|
|
|
{
|
2020-06-10 21:48:10 +00:00
|
|
|
cd "$srcdir/SuperSlicer-$_pkgtag"
|
2020-04-03 00:16:54 +00:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2020-06-10 21:48:10 +00:00
|
|
|
|
2020-04-03 00:16:54 +00:00
|
|
|
cmake .. \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DOpenGL_GL_PREFERENCE=GLVND \
|
|
|
|
-DSLIC3R_FHS=ON \
|
|
|
|
-DSLIC3R_STATIC=OFF \
|
|
|
|
-DSLIC3R_WX_STABLE=ON \
|
|
|
|
-DSLIC3R_GTK=3 \
|
2020-10-11 18:13:41 +00:00
|
|
|
-DSLIC3R_BUILD_TESTS=OFF \
|
2021-06-11 14:49:10 +00:00
|
|
|
-DSLIC3R_ALPHA=ON \
|
2020-10-25 11:51:49 +00:00
|
|
|
-DwxWidgets_CONFIG_EXECUTABLE=/opt/wxgtk-dev/bin/wx-config
|
2020-10-11 18:13:41 +00:00
|
|
|
|
2020-04-03 00:16:54 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package()
|
|
|
|
{
|
2020-06-10 21:48:10 +00:00
|
|
|
cd "$srcdir/SuperSlicer-$_pkgtag/build"
|
|
|
|
|
2020-04-03 00:16:54 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
2020-10-11 18:13:41 +00:00
|
|
|
test ! -h "$pkgdir/usr/share/SuperSlicer/resources" || rm "$pkgdir/usr/share/SuperSlicer/resources"
|
2020-06-10 21:48:10 +00:00
|
|
|
|
2020-10-11 18:13:41 +00:00
|
|
|
mv "$pkgdir/usr/bin/superslicer" "$pkgdir/usr/share/SuperSlicer"
|
|
|
|
install -Dm 755 "${srcdir}/start-superslicer.sh" "${pkgdir}/usr/bin/superslicer"
|
2020-04-03 00:16:54 +00:00
|
|
|
}
|