Permalink
Cannot retrieve contributors at this time
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?
bee-files/qt5.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
53 lines (42 sloc)
1.36 KB
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
#!/usr/bin/env beesh | |
# BEE_VERSION qt5-5.15.2-0 | |
# SRCURL[0]="https://download.qt.io/archive/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.tar.xz" | |
SRCURL[0]="https://beehive.molgen.mpg.de/e1447db4f06c841d8947f0a6ce83a7b5/qt-everywhere-src-5.15.2.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} \ | |
-plugindir ${LIBDIR}/plugins \ | |
-headerdir ${INCLUDEDIR} \ | |
-sysconfdir ${SYSCONFDIR} \ | |
-nomake examples \ | |
-opensource \ | |
-confirm-license \ | |
-no-strip \ | |
-no-pch \ | |
-verbose \ | |
-xcb \ | |
-qpa xcb \ | |
-opengl | |
} | |
mee_build() { | |
start_cmd make ${BEE_MAKEFLAGS} | |
} | |
mee_install() { | |
start_cmd make INSTALL_ROOT=${D} install | |
} |