Skip to content
Permalink
2a47330177
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 32 lines (24 sloc) 665 Bytes
#!/usr/bin/env beesh
# BEE_VERSION qt5-5.10.1-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
# BEE_MAKEFLAGS=-j1
mee_configure() {
start_cmd ${S}/configure \
-prefix ${PREFIX} \
-bindir ${BINDIR} \
-libdir ${LIBDIR} \
-headerdir ${INCLUDEDIR} \
-sysconfdir ${SYSCONFDIR} \
-nomake examples \
-opensource \
-confirm-license \
-skip qtwebengine
}
mee_build() {
start_cmd make ${BEE_MAKEFLAGS}
}
mee_install() {
start_cmd make INSTALL_ROOT=${D} install
}