mirror of
https://github.com/ukui/ukui-kwin.git
synced 2026-03-09 09:29:04 -07:00
27 lines
684 B
Makefile
Executable File
27 lines
684 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
|
|
|
|
export DEB_LDFLAGS_MAINT_APPEND := -Wl,--as-needed
|
|
|
|
# Workaround for FT1500A
|
|
ifneq (,$(filter $(DEB_HOST_ARCH_CPU), arm64))
|
|
export DEB_CFLAGS_MAINT_APPEND := -D__KYLIN_FT1500A_DISPLAY__
|
|
export DEB_CXXFLAGS_MAINT_APPEND := -D__KYLIN_FT1500A_DISPLAY__
|
|
endif
|
|
|
|
l10npkgs_firstversion_ok := 4:4.14.0-2
|
|
include /usr/share/pkg-kde-tools/qt-kde-team/2/l10n-packages.mk
|
|
|
|
%:
|
|
dh $@ --with kf5,pkgkde_symbolshelper --buildsystem kf5 --without build_stamp
|
|
|
|
|
|
override_dh_auto_test:
|
|
# Disable auto tests at build time
|
|
:
|
|
|
|
override_dh_gencontrol: l10npkgs_firstversion_ok
|
|
dh_gencontrol
|