Skip to content
Permalink
a22756b64e
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 36 lines (27 sloc) 792 Bytes
#!/usr/bin/env beesh
SRCURL=(http://download.qt.io/official_releases/qt/${PKGVERSION[2]}/${PKGVERSION}/single/qt-everywhere-opensource-src-${PKGVERSION}.tar.gz)
PATCHURL[0]="https://bugreports.qt.io/secure/attachment/46929/qtwebkit.diff"
PREFIX=/usr/local/qt5
build_in_sourcedir
# BEE_MAKEFLAGS=-j1
mee_patch() {
perl -i -pe 's"/Source"/qtwebkit/Source"' $F/qtwebkit.diff
bee_patch
}
mee_configure() {
start_cmd ${S}/configure \
-prefix ${PREFIX} \
-bindir ${BINDIR} \
-libdir ${LIBDIR} \
-headerdir ${INCLUDEDIR} \
-sysconfdir ${SYSCONFDIR} \
-nomake examples \
-opensource \
-confirm-license
}
mee_build() {
start_cmd make ${BEE_MAKEFLAGS}
}
mee_install() {
start_cmd make INSTALL_ROOT=${D} install
}