36 lines
1.0 KiB
Makefile
Executable File
36 lines
1.0 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
DPKG_EXPORT_BUILDFLAGS = 1
|
|
include /usr/share/dpkg/default.mk
|
|
export QT_SELECT = qt5
|
|
|
|
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
|
|
|
|
DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
|
|
|
VERSION = $(DEB_VERSION_UPSTREAM)
|
|
_PACK_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$1}')
|
|
_BUILD_VER = $(shell echo $(VERSION) | awk -F'[+_~-]' '{print $$2}' | sed 's/[^0-9]//g' | awk '{print int($$1)}')
|
|
ifeq ($(_BUILD_VER),)
|
|
CONFIG_VERSION = $(_PACK_VER)
|
|
else
|
|
CONFIG_VERSION = $(_PACK_VER).$(_BUILD_VER)
|
|
endif
|
|
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- -DBUILD_PLUGINS=OFF -DBUILD_DOCS=ON -DDTK_VERSION=$(_PACK_VER) -DDTK_STATIC_TRANSLATION=YES
|
|
#override_dh_auto_configure:
|
|
# dh_auto_configure -- LIB_INSTALL_DIR=/usr/lib/$(DEB_HOST_MULTIARCH)
|
|
#override_dh_makeshlibs:
|
|
# dh_makeshlibs -V
|
|
|
|
#ifeq ($(DEB_BUILD_ARCH), sw_64)
|
|
#override_dh_makeshlibs:
|
|
# dh_makeshlibs -V -- -c0
|
|
#endif
|
|
|
|
override_dh_makeshlibs:
|
|
dh_makeshlibs -V "libdtkwidget5 (>= $(shell echo $(VERSION) | cut -d '.' -f 1,2))"
|