mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-27 10:55:34 +02:00

Python2 is removed from Debian stable/unstable and latest Ubuntu. So, we need to use a newest version of Qt (here Qt 6.4.3). Change-Id: I6c8b1eee644aab787d54e467f64011762ffd7548
21 lines
450 B
Makefile
Executable file
21 lines
450 B
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# export DH_VERBOSE = 1
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
CXXFLAGS="-flto -flto-partition=none" CFLAGS="-flto -flto-partition=none" ./configure \
|
|
-opensource \
|
|
-confirm-license \
|
|
-nomake examples \
|
|
-nomake tests \
|
|
-prefix "${QT_JAMI_PREFIX}"
|
|
|
|
override_dh_auto_build:
|
|
cmake --build . --parallel
|
|
|
|
override_dh_auto_install:
|
|
cmake --install . --prefix $(CURDIR)/debian/tmp/${QT_JAMI_PREFIX}
|