diff options
-rw-r--r-- | community/libarcus/APKBUILD | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/community/libarcus/APKBUILD b/community/libarcus/APKBUILD index b1e65eb658..d994acb4f1 100644 --- a/community/libarcus/APKBUILD +++ b/community/libarcus/APKBUILD @@ -3,7 +3,7 @@ pkgname=libarcus # Needs to be upgraded in sync with the curaengine aport pkgver=4.13.0 -pkgrel=0 +pkgrel=1 pkgdesc="Communication library for Cura" url="https://github.com/Ultimaker/libArcus" arch="all" @@ -11,8 +11,10 @@ license="LGPL-3.0-or-later" makedepends=" cmake protobuf-dev + py3-sip4-dev + python3-dev " -subpackages="$pkgname-dev" +subpackages="$pkgname-dev py3-$pkgname:_py" options="!check" # no test suite source="https://github.com/Ultimaker/libArcus/archive/$pkgver/libArcus-$pkgver.tar.gz protobuf.patch @@ -24,7 +26,7 @@ build() { -DCMAKE_BUILD_TYPE=None \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ - -DBUILD_PYTHON=OFF + -DBUILD_PYTHON=ON cmake --build build } |