Skip to content
Permalink
master
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 44 lines (35 sloc) 1002 Bytes
#!/usr/bin/env beesh
# BEE_VERSION qt5-5.15.5_20220705_ea4efc06-0
# origin: https://invent.kde.org/qt/qt/qt5.git - branch kde/5.15
SRCURL[0]="https://beehive.molgen.mpg.de/1566026e325525d550c60fee32ecc2b8/qt-everywhere-src-5.15.5_20220705_ea4efc06.tar.lz"
PREFIX=/usr/local/qt5
BEE_BUILDTYPE=autotools
BMF=$(beegetopt --option j: -- ${BEE_MAKEFLAGS})
# export for build and install
export NINJAJOBS=${BMF/ -- */}
mee_configure() {
MAKEFLAGS=${BEE_MAKEFLAGS} \
${S}/configure \
-confirm-license \
-opensource \
-prefix ${PREFIX} \
-bindir ${BINDIR} \
-libdir ${LIBDIR} \
-plugindir ${LIBDIR}/plugins \
-headerdir ${INCLUDEDIR} \
-sysconfdir ${SYSCONFDIR} \
-nomake examples \
-nomake tests \
-no-strip \
-no-pch \
-verbose \
-xcb \
-qpa "xcb;wayland" \
-opengl
}
mee_build() {
make ${BEE_MAKEFLAGS}
}
mee_install() {
make INSTALL_ROOT=${D} install
}