diff options
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..d80d4da --- /dev/null +++ b/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +override_dh_usrlocal: + +%: + dh $@ + +override_dh_auto_configure: + dh_auto_configure --buildsystem=qmake --builddir -- ../src + +override_dh_auto_build: + dh_auto_build --builddir + +override_dh_auto_install: + dh_auto_install --builddir -- INSTALL_ROOT='$$(DESTDIR)' + +override_dh_auto_clean: + dh_auto_clean --builddir |