1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
export DEB_CXXFLAGS_MAINT_APPEND = $(shell dpkg-buildflags --get CPPFLAGS)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export QT_SELECT=qt5
%:
dh $@
override_dh_auto_configure:
./configure --prefix=/usr --verbose
override_dh_auto_install:
dh_auto_install -- INSTALL_ROOT=$(CURDIR)/debian/qconf
mv debian/qconf/usr/bin/qconf debian/qconf/usr/bin/qt-qconf
override_dh_auto_clean:
dh_auto_clean
rm -rf debian/qconf
rm -f config.guess config.sub conf.log conf.pri
rm -f debian/qconf.substvars debian/qconf.debhelper.log
rm -f qconf qconf.o stringhelp.o
|