superslicer-prerelease/PKGBUILD

59 lines
1.9 KiB
Text
Raw Normal View History

2020-04-03 00:16:54 +00:00
# Maintainer: Dominic Meiser git at msrd0 dot de
pkgname=slic3r++
2020-05-10 17:38:47 +00:00
pkgver=2.2.50
_pkgtag=$pkgver
pkgrel=1
2020-04-03 00:16:54 +00:00
pkgdesc="G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)"
arch=('x86_64')
url="https://github.com/supermerill/Slic3r"
license=('AGPL3')
depends=('cgal' 'glew' 'nlopt' 'openvdb' 'qhull' 'wxgtk3')
2020-04-03 00:16:54 +00:00
makedepends=('boost' 'cereal' 'cmake' 'eigen' 'libigl' 'openvdb' 'wxgtk2') # cmake doesn't detect wx if not both gtk2 and gtk3 are installed
2020-04-21 17:15:00 +00:00
source=("https://github.com/supermerill/Slic3r/archive/$_pkgtag.tar.gz"
2020-04-03 00:16:54 +00:00
"slic3r++.desktop"
2020-04-21 17:15:00 +00:00
"0001-wxgtk3-is-broken-on-wayland.patch")
2020-05-10 17:38:47 +00:00
sha512sums=('f84a37dcaec2a5e24e197572b08ccb3c9cd17d9c048f2e0af0ad52d1b928b11f1447445f6e97b27e2b28e1c51c9666dcfae1f38986d9d5109e10a02d83ea8303'
2020-04-03 00:16:54 +00:00
'2f9e364724e28e26c328b83cbf76c6d05544469c3ae14324ae11a1c97fc11878d1f892674ddc6440d14d8bfbca80ba8fc0dcbaa7cf3b7420e91962ee9582b8a2'
'acf35ebe467e9fb30f1b77d15348f1a7b82dcf45a5b829e375e972b5d6b49968603b3fa090c4d1f56e8b5148e2b820e79afa269da60ace70de1ceadcf6e820c5')
prepare()
{
2020-04-21 17:15:00 +00:00
cd "$srcdir/Slic3r-$_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
# apply patches
2020-04-21 17:15:00 +00:00
patch --forward --strip=1 --input="$srcdir/0001-wxgtk3-is-broken-on-wayland.patch"
2020-04-03 00:16:54 +00:00
}
build()
{
2020-04-21 17:15:00 +00:00
cd "$srcdir/Slic3r-$_pkgtag"
2020-04-03 00:16:54 +00:00
mkdir -p build
cd build
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 \
-DSLIC3R_BUILD_TESTS=OFF
make
}
package()
{
2020-04-21 17:15:00 +00:00
cd "$srcdir/Slic3r-$_pkgtag/build"
2020-04-03 00:16:54 +00:00
make DESTDIR="$pkgdir" install
2020-04-04 15:21:34 +00:00
test ! -h "$pkgdir/usr/share/slic3r++/resources" || rm "$pkgdir/usr/share/slic3r++/resources"
2020-04-03 00:16:54 +00:00
install -d "$pkgdir/usr/share/applications"
install -m 644 "$srcdir/slic3r++.desktop" "$pkgdir/usr/share/applications/"
}