repo/extra/qt5/build

37 lines
772 B
Plaintext
Raw Normal View History

2019-11-28 16:50:59 -07:00
#!/bin/sh -e
# Don't link against execinfo.h.
sed -i 's/define QLOG/define N/g' \
./src/corelib/global/qlogging.cpp
2020-01-21 06:48:14 -07:00
2019-11-28 16:50:59 -07:00
./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 \
2020-01-19 07:03:22 -07:00
-no-libudev \
2019-11-28 16:50:59 -07:00
-no-separate-debug-info \
-no-pch \
-no-dbus \
-no-accessibility \
-no-gtk \
2020-01-18 06:57:26 -07:00
-no-glib \
2019-11-28 16:50:59 -07:00
-system-libjpeg \
-system-libpng \
-system-sqlite \
-system-zlib \
-system-freetype \
2020-01-17 14:33:45 -07:00
-system-harfbuzz
2019-11-28 16:50:59 -07:00
make
make INSTALL_ROOT="$1" install