forked from ports/contrib
20 lines
525 B
Plaintext
20 lines
525 B
Plaintext
|
# Description: Python 3 bindings for QtWebEngine
|
||
|
# URL: https://www.riverbankcomputing.com/software/pyqtwebengine/intro
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-pyqt5 qtwebengine
|
||
|
|
||
|
name=python3-pyqtwebengine
|
||
|
version=5.14.0
|
||
|
release=1
|
||
|
source=(https://pypi.python.org/packages/source/P/PyQtWebEngine/PyQtWebEngine-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd PyQtWebEngine-$version
|
||
|
export PATH="/usr/lib/qt5/bin/:${PATH}"
|
||
|
sip-build \
|
||
|
--no-make
|
||
|
cd build
|
||
|
make
|
||
|
make INSTALL_ROOT=$PKG install -j1
|
||
|
}
|