desktop/pyside2-tools/PKGBUILD
2019-01-23 09:31:35 +01:00

32 lines
710 B
Bash

pkgname=pyside2-tools
_qtver=5.12.0
pkgver=${_qtver/-/}
pkgrel=1
arch=(x86_64)
url='https://www.qt.io/'
license=(LGPL)
pkgdesc='lupdate, rcc and uic tools for PySide2'
depends=('pyside2')
makedepends=('cmake' 'shiboken2')
_pkgfqn=pyside-setup-everywhere-src-${_qtver}
source=("https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-$pkgver-src/${_pkgfqn}.tar.xz")
sha256sums=('890149628a6c722343d6498a9f7e1906ce3c10edcaef0cc53cd682c1798bef51')
prepare() {
mkdir -p build
}
build() {
cd build
cmake ../${_pkgfqn}/sources/pyside2-tools \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_TESTS=OFF \
-DUSE_PYTHON_VERSION=3
make
}
package() {
cd build
make DESTDIR=$pkgdir install
}