diff options
author | Christopher Roy Bratusek <nano@jpberlin.de> | 2017-01-06 22:46:12 +0100 |
---|---|---|
committer | Christopher Roy Bratusek <nano@jpberlin.de> | 2017-01-06 22:49:33 +0100 |
commit | edce555f2be28092ffb69c122bbfd0c2b9a86e19 (patch) | |
tree | e1969d72c5d387716a878c704bca83c1c1312d0c /port-files/debian/rules | |
parent | update debian packaging (diff) | |
download | lumina-edce555f2be28092ffb69c122bbfd0c2b9a86e19.tar.gz lumina-edce555f2be28092ffb69c122bbfd0c2b9a86e19.tar.bz2 lumina-edce555f2be28092ffb69c122bbfd0c2b9a86e19.zip |
debian rules: comments
Diffstat (limited to 'port-files/debian/rules')
-rwxr-xr-x | port-files/debian/rules | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/port-files/debian/rules b/port-files/debian/rules index 25cefa9b..2840aa2f 100755 --- a/port-files/debian/rules +++ b/port-files/debian/rules @@ -6,9 +6,25 @@ include /usr/share/dpkg/default.mk export DEB_BUILD_MAINT_OPTIONS = hardening=+all +# +# you may want to comment-out --parallel if build breaks for +# no visible reason or without meaningful error message +# + %: dh $@ --parallel +# For Debian GNU/Linux which does not offer manually compiled +# libxcb-xinput0/libxcb-xinput0-dev, add the following flag: +# +# CONFIG+=NO_XINPUT +# +# also remove +# +# libxcb-xinput0-dev +# +# from dependencies in debian/rules (obviously) + override_dh_auto_configure: /usr/lib/$(DEB_HOST_MULTIARCH)/qt5/bin/qmake \ PREFIX=/usr \ @@ -19,7 +35,7 @@ override_dh_auto_configure: QMAKE_LFLAGS="$(LDFLAGS) -Wl,--as-needed" \ CONFIG+=nostrip \ CONFIG+=WITH_I18N \ - QMAKE_CFLAGS_ISYSTEM= \ + QMAKE_CFLAGS_ISYSTEM= override_dh_auto_clean: dh_auto_clean |