Skip to content
Permalink
3ea4bb9e5e
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 46 lines (36 sloc) 1.17 KB
#!/usr/bin/env beesh
# BEE_VERSION qt5-5.12.7-0
SRCURL[0]="https://download.qt.io/archive/qt/${PKGVERSION[2]}/${PKGVERSION}/single/qt-everywhere-src-${PKGVERSION}.tar.xz"
PREFIX=/usr/local/qt5
# build_in_sourcedir
###############################################################################
# NOTE:
# webengine is the new webkit (sigh). To obtain a 'lean and mean' qt toolkit,
# this is the way to dump all web related stuff.
# mee_extract_post() {
# start_cmd rm -rf ${S}/qtweb*
# }
# At the time of building the system libevent is a complete mess. But it also makes
# sense to keep this in future builds.
mee_configure_pre() {
start_cmd sed -e '/webengine-system-libevent/ s/=true\s*$/=false/' -i ${S}/qtwebengine/src/core/config/linux.pri
}
mee_configure() {
start_cmd ${S}/configure \
-prefix ${PREFIX} \
-bindir ${BINDIR} \
-libdir ${LIBDIR} \
-headerdir ${INCLUDEDIR} \
-sysconfdir ${SYSCONFDIR} \
-nomake examples \
-opensource \
-confirm-license \
-no-strip \
-no-pch
}
mee_build() {
start_cmd make ${BEE_MAKEFLAGS}
}
mee_install() {
start_cmd make INSTALL_ROOT=${D} install
}