1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
# Copyright 2009 Steve Langasek <vorlon@debian.org>
# build should fail if anything at all is wrong with the library symbols
export DPKG_GENSYMBOLS_CHECK_LEVEL=4
# always force the check for undefined symbols
export DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs
%:
dh $@ --with autoreconf
override_dh_auto_configure:
# Add here commands to configure the package.
CXXFLAGS="-g -O2 -pipe" \
dh_auto_configure -- --with-qt_dir_include=/usr/include/qt4 \
--enable-static --without-pth
# clean sources to remove all moc-autogenerated files,
# without which this won't build with Qt4.
make clean
|