-
Notifications
You must be signed in to change notification settings - Fork 0
pyqt: Add PyQt for Qt4 and Qt5 #209
+97
−0
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,49 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION PyQt-x11-gpl-4.11.4-0 | ||
|
||
export QTDIR=/usr/local/qt4 | ||
|
||
## The source URL(s) array | ||
SRCURL[0]="https://sourceforge.net/projects/pyqt/files/PyQt4/PyQt-${PKGVERSION}/PyQt-x11-gpl-${PKGVERSION}.tar.gz" | ||
|
||
## Add URLs/pathes to patch files | ||
# Fix phonon detection | ||
PATCHURL+=(file:///src/mariux/patches/PyQt.phonon.diff.gz) | ||
|
||
## 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/qt4/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}" | ||
} |
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}" | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does the patch come from? Please note in the patch file, who the author is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's from SlackBuild.org, but I couldn't guarantee that the SBO-maintainter is the author.