2024-09-05 17:39:14 +02:00
|
|
|
pkgname=orca-slicer-git
|
2024-09-09 12:21:41 +02:00
|
|
|
pkgver=2.2.0.158c71f05e_beta
|
2024-09-05 17:39:14 +02:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.)"
|
|
|
|
arch=('x86_64')
|
|
|
|
url="https://github.com/SoftFever/OrcaSlicer"
|
|
|
|
license=('AGPL-3.0-only')
|
2024-09-09 12:21:41 +02:00
|
|
|
depends=('cairo' 'dbus' 'expat' 'fontconfig' 'gcc-libs' 'gdk-pixbuf2' 'glib2' 'glibc'
|
|
|
|
'gst-plugins-bad-libs' 'gstreamer' 'gtk3' 'hicolor-icon-theme' 'libglvnd' 'libjpeg-turbo'
|
|
|
|
'libspnav' 'libtiff' 'libx11' 'pango' 'python' 'wayland' 'webkit2gtk-4.1' 'zlib')
|
|
|
|
makedepends=('cmake' 'extra-cmake-modules' 'git' 'glew' 'm4' 'ninja' 'pkgconf' 'wayland-protocols')
|
2024-09-05 17:39:14 +02:00
|
|
|
provides=("orca-slicer")
|
|
|
|
source=("$pkgname::git+https://github.com/SoftFever/OrcaSlicer.git")
|
|
|
|
b2sums=('SKIP')
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd $pkgname
|
2024-09-09 12:21:41 +02:00
|
|
|
_version=$(sed -n 's/set(SoftFever_VERSION "\([^"]*\)-.*".*/\1/p' version.inc)
|
|
|
|
_suffix=$(sed -n 's/set(SoftFever_VERSION ".*-\([^"]*\)".*/\1/p' version.inc)
|
|
|
|
_commit=$(git rev-parse --short HEAD)
|
|
|
|
printf "%s.%s_%s" $_version $_commit $_suffix
|
2024-09-05 17:39:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd $srcdir/$pkgname
|
|
|
|
|
2024-09-07 01:09:19 +02:00
|
|
|
# C++20 disallows the use of the Point<T> syntax in the constructor
|
2024-09-05 17:39:14 +02:00
|
|
|
sed -i 's/explicit Point<T>(/explicit Point(/' src/clipper2/Clipper2Lib/include/clipper2/clipper.core.h
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir/$pkgname
|
2024-09-07 01:09:19 +02:00
|
|
|
export CXXFLAGS="${CXXFLAGS} -flto"
|
|
|
|
|
2024-09-05 17:39:14 +02:00
|
|
|
cmake \
|
|
|
|
-G Ninja \
|
|
|
|
-S deps \
|
|
|
|
-B deps/build \
|
|
|
|
-DDEP_WX_GTK3=ON
|
|
|
|
ninja -C deps/build
|
|
|
|
|
|
|
|
cmake \
|
|
|
|
-G Ninja \
|
|
|
|
-S . \
|
|
|
|
-B build \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2024-09-07 01:09:19 +02:00
|
|
|
-DCMAKE_INSTALL_FULL_DATAROOTDIR=/usr\/share/ \
|
2024-09-05 17:39:14 +02:00
|
|
|
-DCMAKE_PREFIX_PATH=$srcdir/$pkgname/deps/build/destdir/usr/local \
|
|
|
|
-DSLIC3R_STATIC=1 \
|
|
|
|
-DORCA_TOOLS=1 \
|
|
|
|
-DSLIC3R_FHS=1 \
|
|
|
|
-DSLIC3R_GTK=3
|
|
|
|
ninja -C build
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $srcdir/$pkgname
|
2024-09-07 01:09:19 +02:00
|
|
|
|
2024-09-05 17:39:14 +02:00
|
|
|
DESTDIR=$pkgdir ninja -C build install
|
|
|
|
install -Dm644 doc/*.md -t $pkgdir/usr/share/doc/OrcaSlicer/
|
|
|
|
install -Dm644 $pkgdir/usr/LICENSE.txt $pkgdir/usr/share/licenses/OrcaSlicer/LICENSE
|
|
|
|
rm -rf $pkgdir/usr/LICENSE.txt
|
|
|
|
}
|
|
|
|
|