Skip to content
Permalink
4cb684e9bb
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 33 lines (25 sloc) 701 Bytes
#!/usr/bin/env beesh
# BEE_VERSION qt5-5.10.1-2
SRCURL[0]="https://download.qt.io/archive/qt/${PKGVERSION[2]}/${PKGVERSION}/single/qt-everywhere-src-${PKGVERSION}.tar.xz"
PREFIX=/usr/local/qt5
# https://bugreports.qt.io/browse/QTBUG-37417
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 \
-no-strip
}
mee_build() {
start_cmd make ${BEE_MAKEFLAGS}
}
mee_install() {
start_cmd make INSTALL_ROOT=${D} install
}