1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
#export DH_VERBOSE=1
export DEB_BUILD_HARDENING=1
# Define install target dir
INSTALLDIR = $(CURDIR)/debian/tmp
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%:
dh $@ --parallel --with pkgkde_symbolshelper
override_dh_auto_configure:
qmake-qt4
override_dh_auto_install:
# Install Pascal binding source & fix permissions
mkdir -p $(INSTALLDIR)/usr/share/pascal/qt4
install $(CURDIR)/qt4.pas $(INSTALLDIR)/usr/share/pascal/qt4/
for type in pas p txt ; do find $(INSTALLDIR)/usr/share/ -type f -name "*$$type" -exec chmod -x '{}' \; ; done
# Now install the lib
dh_auto_install --destdir=$(INSTALLDIR)
# If we don't have a multiarch-Qt, copy lib to multiarch path anyway
$(CURDIR)/debian/fix-multiarch.sh TARGET=$(INSTALLDIR) HOST_MULTIARCH=$(DEB_HOST_MULTIARCH)
override_dh_install:
dh_install --list-missing
|