Skip to content
Permalink
1122e3bfb5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 49 lines (34 sloc) 982 Bytes
#!/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}"
}