[arch-commits] Commit in shiboken2/trunk (PKGBUILD)
Antonio Rojas
arojas at archlinux.org
Fri Nov 20 10:51:03 UTC 2020
Date: Friday, November 20, 2020 @ 10:51:03
Author: arojas
Revision: 401521
Update to 5.15.2
Modified:
shiboken2/trunk/PKGBUILD
----------+
PKGBUILD | 21 +++++++--------------
1 file changed, 7 insertions(+), 14 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-11-20 10:44:48 UTC (rev 401520)
+++ PKGBUILD 2020-11-20 10:51:03 UTC (rev 401521)
@@ -3,10 +3,10 @@
pkgbase=shiboken2
pkgname=(shiboken2 python-shiboken2)
-_qtver=5.15.1
+_qtver=5.15.2
_clangver=11.0.0
pkgver=${_qtver/-/}
-pkgrel=4
+pkgrel=1
arch=(x86_64)
url='https://www.qt.io'
license=(GPL2 LGPL)
@@ -14,26 +14,20 @@
makedepends=(clang llvm cmake libxslt qt5-xmlpatterns python-sphinx)
_pkgfqn=pyside-setup-opensource-src-$_qtver
source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz")
-sha256sums=('f175c1d8813257904cf0efeb58e44f68d53b9916f73adaf9ce19514c0271c3fa')
+sha256sums=('b306504b0b8037079a8eab772ee774b9e877a2d84bab2dbefbe4fa6f83941418')
-prepare() {
- mkdir -p build
-}
-
build() {
- cd build
- cmake ../${_pkgfqn}/sources/shiboken2 \
+ cmake -B build -S ${_pkgfqn}/sources/shiboken2 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_TESTS=OFF \
-DUSE_PYTHON_VERSION=3
- make
+ cmake --build build
}
package_shiboken2() {
depends=(clang=$_clangver llvm libxslt qt5-xmlpatterns)
- cd build
- make DESTDIR="$pkgdir" install
+ DESTDIR="$pkgdir" cmake --install build
# Provided in python-shiboken2
rm -r "$pkgdir"/usr/lib/{python*,libshiboken*}
}
@@ -41,8 +35,7 @@
package_python-shiboken2() {
depends=(python)
- cd build
- make DESTDIR="$pkgdir" install
+ DESTDIR="$pkgdir" cmake --install build
# Provided in shiboken2
rm -r "$pkgdir"/usr/{bin,include,lib/{cmake,pkgconfig}}
}
More information about the arch-commits
mailing list