-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PyQt is a set of Python v2 and v3 bindings for the Qt application framework. Naming is a bit inconsistent: - PyQt-x11-gpl-4.11.4 -> Qt4 - PyQt5_gpl-5.7 -> Qt5 Homepage: https://www.riverbankcomputing.com/software/pyqt/intro
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION PyQt5_gpl-5.7-0 | ||
|
||
export QTDIR=/usr/local/qt5 | ||
|
||
## The source URL(s) array | ||
SRCURL[0]="https://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-${PKGVERSION}/PyQt5_gpl-${PKGVERSION}.tar.gz" | ||
|
||
## Add URLs/pathes to patch files | ||
# PATCHURL+=() | ||
|
||
## files that should not be added from the image directory. | ||
# EXCLUDE+=() | ||
|
||
|
||
## uncomment to change default | ||
build_in_sourcedir | ||
|
||
## specify different source directory | ||
# sourcesubdir_append src | ||
|
||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
mee_configure() { | ||
start_cmd python configure.py \ | ||
--confirm-license \ | ||
--verbose \ | ||
-q /usr/local/qt5/bin/qmake | ||
} | ||
|
||
mee_build() { | ||
start_cmd make ${BEE_MAKEFLAGS} | ||
} | ||
|
||
## mee_install() should install into "${D}" | ||
## default: 'make install DESTDIR="${D}"' | ||
|
||
mee_install() { | ||
start_cmd make install DESTDIR="${D}" INSTALL_ROOT="${D}" | ||
} |