2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-15 12:22:26 +00:00
repo/extra/qt5/build
2020-01-21 16:15:26 +02:00

37 lines
772 B
Bash
Executable File

#!/bin/sh -e
# Don't link against execinfo.h.
sed -i 's/define QLOG/define N/g' \
./src/corelib/global/qlogging.cpp
./configure \
-confirm-license \
-opensource \
-prefix /usr \
-docdir /usr/share/doc/qt \
-headerdir /usr/include/qt \
-archdatadir /usr/lib/qt \
-datadir /usr/share/qt \
-sysconfdir /etc/xdg \
-examplesdir /usr/share/doc/qt/examples \
-nomake examples \
-nomake tests \
-optimized-qmake \
-no-openssl \
-no-libudev \
-no-separate-debug-info \
-no-pch \
-no-dbus \
-no-accessibility \
-no-gtk \
-no-glib \
-system-libjpeg \
-system-libpng \
-system-sqlite \
-system-zlib \
-system-freetype \
-system-harfbuzz
make
make INSTALL_ROOT="$1" install