Skip to content
Permalink
8f6c12396a
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 40 lines (31 sloc) 933 Bytes
#!/usr/bin/env beesh
# BEE_VERSION qt5-5.12.5-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*
# }
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
}